postfix.init.pp: Finally found the right options for the bind mount.

This commit is contained in:
Lari Huttunen 2013-03-01 16:34:33 +01:00
parent 36a5afa303
commit 488327bc91

View file

@ -141,16 +141,13 @@ class postfix {
group => "root",
}
mount { "/var/spool/postfix/var/run/saslauthd":
name => "/var/run/saslauthd",
ensure => mounted,
atboot => true,
device => "none",
fstype => "tmpfs",
options => "uid=postfix,gid=postfix,mode=0710",
device => "/var/run/saslauthd",
options => "bind",
fstype => "bind",
dump => "0",
pass => "0",
require => File["/var/spool/postfix/var/run/saslauthd"],
before => Service["postfix"],
}
}