mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-12 14:56:53 +02:00
15 lines
237 B
Bash
15 lines
237 B
Bash
#!/sbin/openrc-run
|
|
|
|
name="shasquid"
|
|
description="chasquid mail daemon (service)"
|
|
|
|
: ${command_user:="chasquid"}
|
|
|
|
command="/usr/bin/chasquid"
|
|
command_background="yes"
|
|
pidfile="/run/$RC_SVCNAME.pid"
|
|
|
|
depend() {
|
|
need net
|
|
after firewall
|
|
}
|