Codebase list squeezelite / debian/1.9+git20210102.78fef68-2 alpine / squeezelite.initd
debian/1.9+git20210102.78fef68-2

Tree @debian/1.9+git20210102.78fef68-2 (Download .tar.gz)

squeezelite.initd @debian/1.9+git20210102.78fef68-2raw · history · blame

#!/sbin/openrc-run
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

depend() {
    need net
    use alsasound
    after bootmisc
}

start() {
    ebegin "Starting squeezelite"
    start-stop-daemon \
    --start \
    --exec /usr/bin/squeezelite \
    --pidfile /run/squeezelite.pid \
    --make-pidfile \
    --user ${SL_USER} \
    --background \
    -- ${SL_OPTS} ${SL_SERVERIP}
    eend $?
}

stop() {
    ebegin "Stopping squeezelite"
    start-stop-daemon \
    --stop \
    --exec /usr/bin/squeezelite \
    --pidfile /run/squeezelite.pid
    eend $?
}