From b8dae490fd95a93d21edafec8aec275f8b9f56a1 Mon Sep 17 00:00:00 2001 From: Lari Huttunen Date: Mon, 4 Mar 2013 15:39:49 +0100 Subject: [PATCH] postfix.init.pp: Fixed a copy&paste error and added "noauto" to mount options, since otherwise the saslauthd mount will hang at boot time. --- postfix/manifests/init.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/postfix/manifests/init.pp b/postfix/manifests/init.pp index 8c6078a..b99f6da 100644 --- a/postfix/manifests/init.pp +++ b/postfix/manifests/init.pp @@ -79,7 +79,7 @@ class postfix { exec { "usermod-postfix": path => "/bin:/usr/bin:/sbin:/usr/sbin", command => "usermod -a -G mail postfix", - unless => "id -n -G openldap | grep '\\bmail\\b'", + unless => "id -n -G postfix | grep '\\bmail\\b'", } } default: { @@ -149,7 +149,7 @@ class postfix { ensure => mounted, atboot => true, device => "/var/run/saslauthd", - options => "bind, errors=continue", + options => "bind,noauto", fstype => "bind", dump => "0", pass => "0",