blob: ad6f05dd45098507b361b08a8a109a8334c24ac4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/sbin/openrc-run
name="$RC_SVCNAME"
command="/usr/sbin/$RC_SVCNAME"
command_args="-F $SMTPD_OPTS"
command_background=yes
pidfile="/run/$RC_SVCNAME.pid"
depend() {
need net localmount
after bootmisc firewall
use logger dns
provide mta
}
|