summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2019-08-23 11:57:56 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2019-08-23 11:57:56 +0200
commit6bc7300593397d0fd7796e4aa800ee38bdc63f6c (patch)
tree8b701f2b07370ea749e8c900992e98245898ce5a
parent35556e66c2aa05ea1ff38fc902faa4ab20879d26 (diff)
downloadpuppet.KATH-6bc7300593397d0fd7796e4aa800ee38bdc63f6c.tar.gz
puppet.KATH-6bc7300593397d0fd7796e4aa800ee38bdc63f6c.tar.bz2
puppet.KATH-6bc7300593397d0fd7796e4aa800ee38bdc63f6c.zip
Drop superfluous backslash confusion the pupper parser validate command.
-rw-r--r--code/environments/production/manifests/site.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/environments/production/manifests/site.pp b/code/environments/production/manifests/site.pp
index fa710a2..826d942 100644
--- a/code/environments/production/manifests/site.pp
+++ b/code/environments/production/manifests/site.pp
@@ -121,7 +121,7 @@ class browsers {
class cachefilesd {
exec { 'modify_cachefilesd':
- command => "/bin/sed -e 's/\#RUN=yes/RUN=yes/g' -i /etc/default/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"