diff options
Diffstat (limited to 'manifests/definitions')
| -rw-r--r-- | manifests/definitions/config.pp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/manifests/definitions/config.pp b/manifests/definitions/config.pp index aaf73b5..8e203a6 100644 --- a/manifests/definitions/config.pp +++ b/manifests/definitions/config.pp @@ -34,8 +34,8 @@ define postfix::config ($ensure = present, $value, $nonstandard = false) {      present: {        exec {"postconf -e ${name}='${value}'":          unless  => $nonstandard ? { -          false => "test \"x$(postconf -h ${name})\" == 'x${value}'", -          true  => "test \"x$(egrep '^${name} ' /etc/postfix/main.cf | cut -d= -f2 | cut -d' ' -f2)\" == 'x${value}'", +          false => "test \"x$(postconf -h ${name})\" = 'x${value}'", +          true  => "test \"x$(egrep '^${name} ' /etc/postfix/main.cf | cut -d= -f2 | cut -d' ' -f2)\" = 'x${value}'",          },          notify  => Service["postfix"],          require => File["/etc/postfix/main.cf"], | 
