ports/audio/gonic/files/gonic.in
2023-11-14 20:05:48 +09:00

41 lines
1.3 KiB
Bash

#!/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_podcast_path
# gonic_playlists_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"}
: ${gonic_cache_path:="/var/cache/gonic"}
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_podcast_path:+-podcast-path=${gonic_podcast_path}} ${gonic_playlists_path:+-playlists-path=${gonic_playlists_path}} ${gonic_cache_path:+-cache-path=${gonic_cache_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"