diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2019-06-07 11:09:40 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2019-06-07 11:09:40 +0200 |
commit | da435c77968026625c6e2881fb9aa0d44a4a178a (patch) | |
tree | 6d0a02665abc7ba2873f58a85c5044ee704af62b /code/environments/production/manifests/site.pp | |
parent | 2cef5c342ba706b9d07dcbc580a8ed7e1b11d12c (diff) | |
download | puppet.KATH-da435c77968026625c6e2881fb9aa0d44a4a178a.tar.gz puppet.KATH-da435c77968026625c6e2881fb9aa0d44a4a178a.tar.bz2 puppet.KATH-da435c77968026625c6e2881fb9aa0d44a4a178a.zip |
fix copy+paste flaw in class cachefilesd
Diffstat (limited to 'code/environments/production/manifests/site.pp')
-rw-r--r-- | code/environments/production/manifests/site.pp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/code/environments/production/manifests/site.pp b/code/environments/production/manifests/site.pp index 7b62d41..9466c3c 100644 --- a/code/environments/production/manifests/site.pp +++ b/code/environments/production/manifests/site.pp @@ -120,12 +120,12 @@ class browsers { } class cachefilesd { -<------>exec { 'modify_cachefilesd': -<------><------>command => "/bin/sed -e 's/\#RUN=yes/RUN=yes/g' -i /etc/default/cachefilesd" -<------>} -<------>exec { 'ensure_cachefilesd_enabled':. -<------><------>command => "/bin/systemctl enable cachefilesd.service" -<------>} + exec { 'modify_cachefilesd': + command => "/bin/sed -e 's/\#RUN=yes/RUN=yes/g' -i /etc/default/cachefilesd" + } + exec { 'ensure_cachefilesd_enabled':. + command => "/bin/systemctl enable cachefilesd.service" + } } class itzks_systems_common { |