19 lines
367 B
Bash
19 lines
367 B
Bash
#!@RCD_SCRIPTS_SHELL@
|
|
#
|
|
# $NetBSD: exim.sh,v 1.7 2004/11/26 10:17:40 grant Exp $
|
|
#
|
|
# PROVIDE: mail
|
|
# REQUIRE: LOGIN
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="exim"
|
|
exim_flags=${exim_flags-"-bd -q30m"}
|
|
rcvar=$name
|
|
command="@PREFIX@/sbin/${name}"
|
|
pidfile="/var/run/${name}.pid"
|
|
required_files="@PKG_SYSCONFDIR@/configure"
|
|
extra_commands="reload"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|