mirror of
https://git.freebsd.org/ports.git
synced 2025-05-07 03:16:44 -04:00
19 lines
265 B
Bash
19 lines
265 B
Bash
#!/bin/sh
|
|
|
|
# PROVIDE: akpop3d
|
|
# REQUIRE: DAEMON
|
|
# BEFORE: LOGIN
|
|
# KEYWORD: shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
name=akpop3d
|
|
rcvar=akpop3d_enable
|
|
|
|
command="%%PREFIX%%/bin/${name}"
|
|
command_args="-d -l0"
|
|
|
|
pidfile="/var/run/${name}.pid"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|