mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-10-23 05:22:05 +02:00
16 lines
221 B
Plaintext
16 lines
221 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
pidfile=/run/opendkim/opendkim.pid
|
|
|
|
command=/usr/sbin/opendkim
|
|
command_args="${EXTRA_OPTS}"
|
|
|
|
depend() {
|
|
need net
|
|
before mta
|
|
}
|
|
|
|
start_pre() {
|
|
checkpath -d -o opendkim:opendkim -m755 /run/opendkim
|
|
}
|