diff options
-rw-r--r-- | code/environments/production/manifests/site.pp | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/code/environments/production/manifests/site.pp b/code/environments/production/manifests/site.pp index 91156aa..04c363c 100644 --- a/code/environments/production/manifests/site.pp +++ b/code/environments/production/manifests/site.pp @@ -45,29 +45,28 @@ class ssh_pubkeys_backupserver { } class anacron_on_battery { - file_line { 'anacron-on-battery': - path => '/etc/default/anacron', - line => 'ANACRON_RUN_ON_BATTERY_POWER=yes', - match => '^ANACRON_RUN_ON_BATTERY_POWER\=.*$', - } + file_line { 'anacron-on-battery': + path => '/etc/default/anacron', + line => 'ANACRON_RUN_ON_BATTERY_POWER=yes', + match => '^ANACRON_RUN_ON_BATTERY_POWER\=.*$', + } } class login_manager { - package { 'arctica-greeter': - ensure => 'installed', - } - package { 'kdm': - ensure => 'purged', - } + package { 'arctica-greeter': + ensure => 'installed', + } + package { 'kdm': + ensure => 'purged', + } } class itzks_systems_common { package { 'itzks-systems-common': ensure => 'latest', - } + } } - class fsautoresizetab { file { '/etc/fsautoresizetab': ensure => 'present', |