mirror of
https://git.freebsd.org/ports.git
synced 2025-05-07 03:16:44 -04:00
25 lines
519 B
Bash
25 lines
519 B
Bash
#!/bin/sh
|
|
|
|
# PROVIDE: frps
|
|
# REQUIRE: DAEMON NETWORKING
|
|
# KEYWORD: shutdown
|
|
|
|
# Add the following lines to /etc/rc.conf to enable frps:
|
|
# frps_enable : set to "YES" to enable the daemon, default is "NO"
|
|
|
|
. /etc/rc.subr
|
|
|
|
name=frps
|
|
rcvar=frps_enable
|
|
|
|
load_rc_config $name
|
|
|
|
frps_enable=${frps_enable:-"NO"}
|
|
|
|
logfile="/var/log/${name}.log"
|
|
|
|
procname=%%PREFIX%%/bin/frps
|
|
command="/usr/sbin/daemon"
|
|
command_args="-u %%DAEMON_USER%% -o ${logfile} -t ${name} %%PREFIX%%/bin/frps -c %%PREFIX%%/etc/frps.ini"
|
|
|
|
run_rc_command "$1"
|