c49d1a3273
We have not checked for this KEYWORD for a long time now, so this is a complete noop, and thus no PORTREVISION bump. Removing it at this point is mostly for pedantic reasons, and partly to avoid perpetuating this anachronism by copy and paste to future scripts.
42 lines
991 B
Bash
42 lines
991 B
Bash
#!/bin/sh
|
|
|
|
# Start or stop cyrus-imapd
|
|
# $FreeBSD$
|
|
|
|
# PROVIDE: cyrus_imapd
|
|
# REQUIRE: DAEMON
|
|
# BEFORE: mail
|
|
# KEYWORD: shutdown
|
|
#
|
|
# NOTE for FreeBSD 5.0+:
|
|
# If you want this script to start with the base rc scripts
|
|
# move imapd.sh to /etc/rc.d/cyrus_imapd
|
|
|
|
prefix=%%PREFIX%%
|
|
|
|
# Define these cyrus_imapd_* variables in one of these files:
|
|
# /etc/rc.conf
|
|
# /etc/rc.conf.local
|
|
# /etc/rc.conf.d/cyrus_imapd
|
|
#
|
|
# DO NOT CHANGE THESE DEFAULT VALUES HERE
|
|
#
|
|
[ -z "$cyrus_imapd_enable" ] && cyrus_imapd_enable="NO" # Enable imapd
|
|
#cyrus_imapd_program="${prefix}/cyrus/bin/master" # Location of imapd
|
|
[ -z "$cyrus_imapd_flags" ] && cyrus_imapd_flags="-d" # Flags to imapd program
|
|
|
|
. %%RC_SUBR%%
|
|
|
|
name="cyrus_imapd"
|
|
rcvar=`set_rcvar`
|
|
command="${prefix}/cyrus/bin/master"
|
|
pidfile="/var/run/cyrus-master.pid"
|
|
required_files="${prefix}/etc/cyrus.conf ${prefix}/etc/imapd.conf"
|
|
stop_postcmd="cyrus_imapd_poststop"
|
|
|
|
cyrus_imapd_poststop() {
|
|
/bin/rm -f ${pidfile}
|
|
}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|