You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-misc/lcd4linux/files/lcd4linux-0.10.1_rc2.initd

24 lines
546 B

#!/sbin/openrc-run
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
PIDFILE=/var/run/lcd4linux.pid
DAEMON=/usr/bin/lcd4linux
depend() {
use net
}
start() {
ebegin "Starting lcd4linux"
start-stop-daemon --start --quiet --pidfile ${PIDFILE} --exec ${DAEMON}
eend $? "Failed to start lcd4linux. Did you remember to set up /etc/lcd4linux.conf?"
}
stop() {
ebegin "Stopping lcd4linux"
start-stop-daemon --stop --quiet --oknodo --exec ${DAEMON} --pidfile ${PIDFILE}
eend $?
}