diff options
author | Benjamin Schlüter <bschlueter@posteo.de> | 2018-04-20 11:26:24 +0200 |
---|---|---|
committer | Benjamin Schlüter <bschlueter@posteo.de> | 2018-04-20 11:26:24 +0200 |
commit | 8aca848e5fb25a5f5146e7006aabdfcc47bc258e (patch) | |
tree | 47da6bae10d5682dcefcdd9ab55e85a356f460df /code/environments | |
parent | bf21730f62416cfb417c8356bd7856caa53d76ea (diff) | |
download | puppet.FWSECK-8aca848e5fb25a5f5146e7006aabdfcc47bc258e.tar.gz puppet.FWSECK-8aca848e5fb25a5f5146e7006aabdfcc47bc258e.tar.bz2 puppet.FWSECK-8aca848e5fb25a5f5146e7006aabdfcc47bc258e.zip |
Ensure that nscd is not installed on diskfull workstations.
Diffstat (limited to 'code/environments')
-rw-r--r-- | code/environments/production/manifests/site.pp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/code/environments/production/manifests/site.pp b/code/environments/production/manifests/site.pp index bf9aed1..919d9d3 100644 --- a/code/environments/production/manifests/site.pp +++ b/code/environments/production/manifests/site.pp @@ -73,6 +73,9 @@ class itzks_systems_workstation { package { 'itzks-systems-workstation': ensure => 'latest', } + package { 'nscd': + ensure => 'purged', + } } class itzks_systems_mainserver { |