summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordaskyburner <bschlueter@posteo.de>2019-06-05 11:16:17 +0200
committerdaskyburner <bschlueter@posteo.de>2019-06-05 11:16:17 +0200
commit2b57ba5e0422568fb2415dba0f0b21805976c9c4 (patch)
tree474385679de05f7aedc48b73a31e1adf98f453c3
parent477a8e8d43ef09eee0bd90c0a44e870353764891 (diff)
downloadpuppet.DEV-2b57ba5e0422568fb2415dba0f0b21805976c9c4.tar.gz
puppet.DEV-2b57ba5e0422568fb2415dba0f0b21805976c9c4.tar.bz2
puppet.DEV-2b57ba5e0422568fb2415dba0f0b21805976c9c4.zip
Changes for exec[cachefilesd].
-rw-r--r--code/environments/production/manifests/site.pp12
1 files changed, 6 insertions, 6 deletions
diff --git a/code/environments/production/manifests/site.pp b/code/environments/production/manifests/site.pp
index 93703f9..fecb1ab 100644
--- a/code/environments/production/manifests/site.pp
+++ b/code/environments/production/manifests/site.pp
@@ -115,10 +115,7 @@ class browsers {
# file { '/etc/default/cachefiles' }
#}
-exec { 'modify_cachefilesd':
- command => "sed -e 's/^#RUN=yes/RUN=yes/'",
- path => '/etc/default/cachefilesd',
-}
+
@@ -258,9 +255,12 @@ node "TestVM-Workstation-stretch-2.intern" {
debdelta => 1,
},
}
- exec { 'cachefilesd': }
+ exec { 'modify_cachefilesd':
+ command => "sed -e 's/^#RUN=yes/RUN=yes/'",
+ path => "/etc/default/cachefilesd",
+ }
service { 'cachefilesd':
ensure => running,
enable => true,
-}
+ }
}