diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-04-20 10:52:54 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-04-20 10:52:54 +0200 |
commit | de24b0a559a486a3ab1b14932c9bcf9a1fe3a6b3 (patch) | |
tree | b17e3d944af1db8478f56830039ab173c12af2bb /code | |
parent | 268bee680b2d078cf90d758881ed1a9cebc3e9e5 (diff) | |
download | puppet.KATH-de24b0a559a486a3ab1b14932c9bcf9a1fe3a6b3.tar.gz puppet.KATH-de24b0a559a486a3ab1b14932c9bcf9a1fe3a6b3.tar.bz2 puppet.KATH-de24b0a559a486a3ab1b14932c9bcf9a1fe3a6b3.zip |
Ensure that nscd is not installed on diskfull workstations.
Diffstat (limited to 'code')
-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 87fd0dd..c3355a1 100644 --- a/code/environments/production/manifests/site.pp +++ b/code/environments/production/manifests/site.pp @@ -71,6 +71,9 @@ class itzks_systems_workstation { package { 'itzks-systems-workstation': ensure => 'latest', } + package { 'nscd': + ensure => 'purged', + } } class itzks_systems_mainserver { |