postfix.init.pp: Finally found the right options for the bind mount.
This commit is contained in:
parent
36a5afa303
commit
488327bc91
1 changed files with 3 additions and 6 deletions
|
@ -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"],
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue