From 5a808f15db6ae1834ba6dbdddc27fa8b3cc5aa95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20M=E4kinen?= Date: Fri, 25 Feb 2011 22:24:06 +0200 Subject: [PATCH] Fixed "Unrecognised escape sequence '\;'" warning from procmail module. --- procmail/manifests/init.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/procmail/manifests/init.pp b/procmail/manifests/init.pp index 9191621..41680c0 100644 --- a/procmail/manifests/init.pp +++ b/procmail/manifests/init.pp @@ -29,7 +29,7 @@ class procmail { } exec { "generate-procmailrc": - command => "( echo 'DROPPRIVS=yes' ; find /etc/procmailrc.d/*.rc -exec echo 'INCLUDERC={}' \; ) > /etc/procmailrc ; true", + command => '( echo "DROPPRIVS=yes" ; find /etc/procmailrc.d/*.rc -exec echo "INCLUDERC={}" \; ) > /etc/procmailrc ; true', path => "/bin:/usr/bin:/sbin:/usr/sbin", refreshonly => true, }