Codebase list squeezelite / c469e33a-39ec-46c2-bedc-afcb309efd48/main alpine / squeezelite.initd
c469e33a-39ec-46c2-bedc-afcb309efd48/main

Tree @c469e33a-39ec-46c2-bedc-afcb309efd48/main (Download .tar.gz)

squeezelite.initd @c469e33a-39ec-46c2-bedc-afcb309efd48/mainraw · 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 alsa
    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 $?
}