mirror of
https://git.freebsd.org/ports.git
synced 2025-06-24 06:00:30 -04:00
Where necessary add $FreeBSD$ to the file No PORTREVISION bump necessary because this is a no-op
37 lines
598 B
Bash
37 lines
598 B
Bash
#!/bin/sh
|
|
|
|
# $FreeBSD$
|
|
#
|
|
# PROVIDE: ircd-ratbox
|
|
# REQUIRE: DAEMON
|
|
# BEFORE: LOGIN
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="ircd_ratbox"
|
|
rcvar=ircd_ratbox_enable
|
|
load_rc_config $name
|
|
|
|
ircd_ratbox_enable=${ircd_ratbox_enable:-"NO"}
|
|
ircd_ratbox_user=${ircd_ratbox_user:-"ircd"}
|
|
ircd_ratbox_group=${ircd_ratbox_group:-"ircd"}
|
|
|
|
command="%%PREFIX%%/bin/ircd"
|
|
pidfile=%%RUNDIR%%/ircd.pid
|
|
required_files="%%PREFIX%%/etc/ircd-ratbox/ircd.conf"
|
|
|
|
start_precmd=prestart
|
|
stop_precmd=prestop
|
|
|
|
prestart()
|
|
{
|
|
touch $pidfile
|
|
chown $ircd_ratbox_user:$ircd_ratbox_group $pidfile
|
|
}
|
|
|
|
prestop()
|
|
{
|
|
rm -f $pidfile
|
|
}
|
|
|
|
run_rc_command "$1"
|