mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-04 02:08:49 -04:00
32 lines
506 B
Bash
32 lines
506 B
Bash
#!@RCD_SCRIPTS_SHELL@
|
|
#
|
|
# $NetBSD: mailman.sh,v 1.2 2008/09/21 18:30:00 martti Exp $
|
|
#
|
|
# PROVIDE: mailman
|
|
# REQUIRE: mail
|
|
# KEYWORD: shutdown
|
|
|
|
if [ -f /etc/rc.subr ]
|
|
then
|
|
. /etc/rc.subr
|
|
fi
|
|
|
|
name="mailman"
|
|
rcvar=$name
|
|
ctl_command="@PREFIX@/lib/mailman/bin/mailmanctl"
|
|
start_cmd="mailman_doit -s start"
|
|
stop_cmd="mailman_doit stop"
|
|
restart_cmd="mailman_doit restart"
|
|
|
|
mailman_doit ()
|
|
{
|
|
${ctl_command} $*
|
|
}
|
|
|
|
if [ -f /etc/rc.subr ]; then
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|
|
else
|
|
mailman_doit "$1"
|
|
fi
|