| Server IP : 82.208.35.60 / Your IP : 216.73.216.238 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/audio/gonic/files/ |
Upload File : |
#!/bin/sh
# PROVIDE: gonic
# REQUIRE: LOGIN
# KEYWORD: shutdown
. /etc/rc.subr
name=gonic
rcvar=${name}_enable
desc="Music streaming server"
load_rc_config "${name}"
# other variables:
# gonic_scan_interval
# gonic_music_path
: ${gonic_enable:="NO"}
: ${gonic_user:="gonic"}
: ${gonic_group:="gonic"}
: ${gonic_proxy_prefix:="/"}
: ${gonic_db_path:="/var/db/gonic/gonic.db"}
: ${gonic_listen_addr:="0.0.0.0:4747"}
pidfile=/var/run/gonic.pid
procname="%%PREFIX%%/bin/gonic"
command="/usr/sbin/daemon"
command_args="-cf -p ${pidfile} ${procname} ${gonic_music_path:+-music-path=${gonic_music_path}} ${gonic_proxy_prefix:+-proxy-prefix=${gonic_proxy_prefix}} ${gonic_listen_addr:+-listen-addr=${gonic_listen_addr}} ${gonic_scan_interval:+-scan-interval=${gonic_scan_interval}} ${gonic_db_path:+-db-path=${gonic_db_path}} ${gonic_args}"
gonic_startprecmd()
{
if [ ! -e ${pidfile} ]; then
install -o ${gonic_user} -g ${gonic_group} /dev/null ${pidfile};
fi
}
start_precmd=gonic_startprecmd
run_rc_command "$1"