postfix.init.pp: Fixed a copy&paste error and added "noauto" to mount options, since otherwise the saslauthd mount will hang at boot time.
This commit is contained in:
parent
03cc217589
commit
b8dae490fd
1 changed files with 2 additions and 2 deletions
|
@ -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",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue