mirror of
https://git.freebsd.org/ports.git
synced 2025-07-16 00:39:15 -04:00
- Stage - Cleanup rc script - Take [1] Approved by: maintainer [1] Sponsored by: Absolight
31 lines
460 B
Bash
31 lines
460 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: anope
|
|
# REQUIRE: LOGIN mysql
|
|
# KEYWORD: shutdown
|
|
|
|
#
|
|
# Add the following line to /etc/rc.conf to enable anope:
|
|
# anope_enable=YES
|
|
#
|
|
# Also, to prevent running anope as root You may use
|
|
# anope_user="nobody"
|
|
# and
|
|
# anope_chdir="%%PREFIX%%/share/anope"
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name=anope
|
|
rcvar=anope_enable
|
|
|
|
load_rc_config $name
|
|
|
|
command=%%PREFIX%%/libexec/anope/services
|
|
|
|
anope_enable=${anope_enable:-"NO"}
|
|
|
|
run_rc_command "$1"
|