diff options
-rw-r--r-- | manifests/site.pp | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/manifests/site.pp b/manifests/site.pp index ab56444..a672211 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -67,6 +67,30 @@ class itzks-systems-workstation { } } +class fsautoresizetab { + file { 'fsautoresizetab': + path => '/etc/', + ensure => present, + replace => 'no', + source => '/usr/share/debian-edu-config/fsautoresizetab', + } +} + +class fsautoresizetab_change_var { + file_line { '/var', + path => '/etc/fsautoresizetab', + line => '/var 10% 30g defaults', + match => '^/var\ .*', + } +} + +class fsautoresizetab_change_usr { + file_line { 'usr', + path => '/etc/fsautoresizetab', + line => '/usr 10% 30g defaults', + match => '^/usr\ .*', + } +} node "all_hosts" { class { 'ssh_pubkeys_admins': } @@ -103,4 +127,7 @@ node "bibserv.intern" inherits "all_servers" {} node /mw.*.intern$/ inherits "all_hosts" { class { 'anacron_on_battery': } class { 'itzks-systems-workstation': } + class { 'fsautoresizetab': } + class { 'fsautoresizetab_change_var': } + class { 'fsautoresizetab_change_usr': } } |