summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2020-10-08 12:19:22 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2020-10-08 12:19:22 +0200
commit4ead736ffb801feef0f8b49e82a37785c94fb078 (patch)
tree663759d6c135229b9fa8fb615df965c32e772bab
parent8b41f6670e03582f2b4430945c88d228ec6d0d5a (diff)
downloadpuppet.FWSECK-4ead736ffb801feef0f8b49e82a37785c94fb078.tar.gz
puppet.FWSECK-4ead736ffb801feef0f8b49e82a37785c94fb078.tar.bz2
puppet.FWSECK-4ead736ffb801feef0f8b49e82a37785c94fb078.zip
site.pp: Silence puppet about a non-escapable character.
-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 d0514df..021df32 100644
--- a/code/environments/production/manifests/site.pp
+++ b/code/environments/production/manifests/site.pp
@@ -184,7 +184,7 @@ class linux {
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"