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.
38 lines
958 B
Bash
38 lines
958 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD: /tmp/pcvs/ports/mail/mailgraph/files/Attic/mailgraph.sh.in,v 1.2 2006-02-20 20:47:11 dougb Exp $
|
|
#
|
|
# PROVIDE: mailgraph
|
|
# REQUIRE: DAEMON
|
|
#
|
|
# Add the following line to /etc/rc.conf to enable mailgraph:
|
|
#
|
|
# mailgraph_enable="YES"
|
|
#
|
|
|
|
. %%RC_SUBR%%
|
|
|
|
name=mailgraph
|
|
rcvar=`set_rcvar`
|
|
|
|
command=%%PREFIX%%/sbin/mailgraph.pl > /dev/null 2>&1
|
|
command_interpreter=/usr/bin/perl
|
|
stop_postcmd=stop_postcmd
|
|
|
|
stop_postcmd()
|
|
{
|
|
rm -f $pidfile
|
|
}
|
|
|
|
mailgraph_enable=${mailgraph_enable:-"NO"}
|
|
mailgraph_pidfile=${mailgraph_pidfile:-"%%DATADIR%%/mailgraph.pid"}
|
|
mailgraph_flags=${mailgraph_flags:-"--logfile /var/log/maillog --daemon-rrd=%%DATADIR%% --ignore-localhost --daemon --daemon-pid=${mailgraph_pidfile}"}
|
|
mailgraph_user=${mailgraph_user:-"%%MAILGRAPH_USER%%"}
|
|
mailgraph_group=${mailgraph_group:-"%%MAILGRAPH_GROUP%%"}
|
|
mailgraph_chdir=${mailgraph_chdir:-"%%DATADIR%%"}
|
|
|
|
load_rc_config $name
|
|
|
|
pidfile=${mailgraph_pidfile}
|
|
|
|
run_rc_command "$1"
|