2016-11-26 21:56:21 +00:00
|
|
|
#!/sbin/openrc-run
|
2017-03-19 05:46:42 +00:00
|
|
|
# Copyright 1999-2012 Gentoo Foundation
|
2016-11-26 21:56:21 +00:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# $Id$
|
|
|
|
|
|
|
|
command="/usr/bin/universalmediaserver"
|
|
|
|
command_args="console"
|
|
|
|
pidfile="${PMS_PIDFILE:-/var/run/ums.pid}"
|
|
|
|
retry="10"
|
|
|
|
start_stop_daemon_args="
|
2017-03-19 05:46:42 +00:00
|
|
|
--background
|
|
|
|
--make-pidfile
|
|
|
|
${UMS_USER:+--user} ${UMS_USER}
|
|
|
|
${UMS_GROUP:+--group} ${UMS_GROUP}
|
2016-11-26 21:56:21 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
depend() {
|
2017-03-19 05:46:42 +00:00
|
|
|
need net
|
2016-11-26 21:56:21 +00:00
|
|
|
}
|