Fixed "Unrecognised escape sequence '\;'" warning from procmail module.

This commit is contained in:
Timo Mkinen 2011-02-25 22:24:06 +02:00
parent 3720469ed0
commit 5a808f15db

View file

@ -29,7 +29,7 @@ class procmail {
} }
exec { "generate-procmailrc": 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", path => "/bin:/usr/bin:/sbin:/usr/sbin",
refreshonly => true, refreshonly => true,
} }