mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-19 18:26:44 +02:00
fails to build with ldap (linker issue) should probably be added/fixed in the future. make sasldb the default auth for saslauthd (we do not support pam).
13 lines
237 B
Bash
13 lines
237 B
Bash
#!/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
|
|
}
|