fd154a9588
(1) they are more likely to do the right thing if the user sets rc_fast_and_loose; and (2) they pre-create any necessary directories prior to start the respective services. Also, fix the path to the courierwebadmin binary in SPECIAL_PERMS for the courier-mta package. Bump the PKGREVISION.
52 lines
929 B
Bash
Executable file
52 lines
929 B
Bash
Executable file
#!@RCD_SCRIPTS_SHELL@
|
|
#
|
|
# $NetBSD: courierpop.sh,v 1.13 2006/06/17 19:26:48 jlam Exp $
|
|
#
|
|
# Courier POP3 services daemon
|
|
#
|
|
# PROVIDE: courierpop
|
|
# REQUIRE: authdaemond
|
|
# KEYWORD: shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="courierpop"
|
|
rcvar=${name}
|
|
command="@PREFIX@/sbin/couriertcpd"
|
|
ctl_command="@PREFIX@/sbin/pop3d"
|
|
pidfile="@VARBASE@/run/pop3d.pid"
|
|
required_files="@PKG_SYSCONFDIR@/pop3d @PKG_SYSCONFDIR@/pop3d-ssl"
|
|
|
|
start_cmd="courierpop_doit start"
|
|
stop_cmd="courierpop_doit stop"
|
|
|
|
courierpop_doit()
|
|
{
|
|
action=$1
|
|
case $action in
|
|
start)
|
|
for f in $required_files; do
|
|
if [ ! -r "$f" ]; then
|
|
@ECHO@ 1>&2 "$0: WARNING: $f is not readable"
|
|
return 1
|
|
fi
|
|
done
|
|
|
|
. @PKG_SYSCONFDIR@/pop3d
|
|
|
|
case x$POP3DSTART in
|
|
x[yY]*)
|
|
@ECHO@ "Starting ${name}."
|
|
${ctl_command} $action
|
|
;;
|
|
esac
|
|
;;
|
|
stop)
|
|
@ECHO@ "Stopping ${name}."
|
|
${ctl_command} $action
|
|
;;
|
|
esac
|
|
}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|