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", group => "root",
} }
mount { "/var/spool/postfix/var/run/saslauthd": mount { "/var/spool/postfix/var/run/saslauthd":
name => "/var/run/saslauthd",
ensure => mounted, ensure => mounted,
atboot => true, atboot => true,
device => "none", device => "/var/run/saslauthd",
fstype => "tmpfs", options => "bind",
options => "uid=postfix,gid=postfix,mode=0710", fstype => "bind",
dump => "0", dump => "0",
pass => "0", pass => "0",
require => File["/var/spool/postfix/var/run/saslauthd"],
before => Service["postfix"],
} }
} }