diff options
author | daskyburner <bschlueter@posteo.de> | 2019-06-17 12:24:34 +0200 |
---|---|---|
committer | daskyburner <bschlueter@posteo.de> | 2019-06-17 12:24:34 +0200 |
commit | 98bbf8e0f531940218228ac6ec74ab699e4d7fe9 (patch) | |
tree | 7bf9992d70389e15026dc61cafd73c083a731b39 /code | |
parent | 508533a1c6e0afcdf876964340828b93375dccfa (diff) | |
download | puppet.DEV-98bbf8e0f531940218228ac6ec74ab699e4d7fe9.tar.gz puppet.DEV-98bbf8e0f531940218228ac6ec74ab699e4d7fe9.tar.bz2 puppet.DEV-98bbf8e0f531940218228ac6ec74ab699e4d7fe9.zip |
Fix typos in class cachefilesd.
Diffstat (limited to 'code')
-rw-r--r-- | code/environments/production/manifests/site.pp | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/code/environments/production/manifests/site.pp b/code/environments/production/manifests/site.pp index a48c2ed..227bb6f 100644 --- a/code/environments/production/manifests/site.pp +++ b/code/environments/production/manifests/site.pp @@ -112,14 +112,16 @@ 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", + } } + + #node "all_hosts" { # class { 'ssh_pubkeys_admins': } # class { 'ssh_pubkeys_firedadmins': } |