blob: 72857700401610ad8723544c6f57a24880f34112 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/sbin/openrc-run
command="/usr/sbin/saslauthd"
command_args=${SASLAUTHD_OPTS:--a sasldb}
pidfile="/run/saslauthd/saslauthd.pid"
depend() {
need net
after firewall
}
start_pre() {
checkpath --directory --mode 0775 /run/saslauthd
}
|