mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-13 07:34:50 +00:00
9aac569eaa
Where necessary add $FreeBSD$ to the file No PORTREVISION bump necessary because this is a no-op
30 lines
585 B
Bash
30 lines
585 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
# PROVIDE: threeproxy
|
|
# REQUIRE: DAEMON
|
|
# BEFORE: LOGIN
|
|
# KEYWORD: shutdown
|
|
|
|
# Define these threeproxy_* variables in one of these files:
|
|
# /etc/rc.conf
|
|
# /etc/rc.conf.local
|
|
# /etc/rc.conf.d/threeproxy
|
|
#
|
|
# DO NOT CHANGE THESE DEFAULT VALUES HERE
|
|
|
|
threeproxy_enable=${threeproxy_enable-"NO"}
|
|
threeproxy_flags=${threeproxy_flags-"%%PREFIX%%/etc/3proxy.cfg"}
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="threeproxy"
|
|
rcvar=threeproxy_enable
|
|
command="%%PREFIX%%/bin/3proxy"
|
|
|
|
load_rc_config $name
|
|
|
|
start_cmd="echo \"Starting ${name}.\"; ${command} ${threeproxy_flags}"
|
|
|
|
run_rc_command "$1"
|