Codebase list squeezelite / 1.9+git20210513.556de56-1 alpine / squeezelite.initd
1.9+git20210513.556de56-1

Tree @1.9+git20210513.556de56-1 (Download .tar.gz)

squeezelite.initd @1.9+git20210513.556de56-1raw · 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 $?
}