diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2019-06-07 11:32:50 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2019-06-07 11:32:50 +0200 |
commit | 56cc3ae518d285786a3226b3d314879ca55de8a9 (patch) | |
tree | 0c5612d98f464588d201ad1a491e8712d343847c /code/environments | |
parent | 3a299d312f7b84904f178502aebd5410be61b7d9 (diff) | |
download | puppet.FWSECK-56cc3ae518d285786a3226b3d314879ca55de8a9.tar.gz puppet.FWSECK-56cc3ae518d285786a3226b3d314879ca55de8a9.tar.bz2 puppet.FWSECK-56cc3ae518d285786a3226b3d314879ca55de8a9.zip |
fix copy+paste flaws
Diffstat (limited to 'code/environments')
-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 32ffb5f..d124a78 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 { |