aboutsummaryrefslogtreecommitdiff
path: root/rodiscd.init.gentoo
diff options
context:
space:
mode:
authorJavier S. Pedro <javier@javispedro.com>2012-07-28 19:10:44 +0200
committerJavier S. Pedro <javier@javispedro.com>2012-07-28 19:10:44 +0200
commitcb01820cb357ba9987359d9b1452fdad16ced373 (patch)
tree8489254aa78dda5e6523ec091afd5945ac8c7450 /rodiscd.init.gentoo
parent3cdb9f590563b1d8be9263f2db210c48351e0894 (diff)
downloadrodisc-cb01820cb357ba9987359d9b1452fdad16ced373.tar.gz
rodisc-cb01820cb357ba9987359d9b1452fdad16ced373.zip
add gentoo init scripts
Diffstat (limited to 'rodiscd.init.gentoo')
-rw-r--r--rodiscd.init.gentoo22
1 files changed, 22 insertions, 0 deletions
diff --git a/rodiscd.init.gentoo b/rodiscd.init.gentoo
new file mode 100644
index 0000000..1541688
--- /dev/null
+++ b/rodiscd.init.gentoo
@@ -0,0 +1,22 @@
+#!/sbin/runscript
+
+command="/usr/sbin/${SVCNAME}"
+pidfile="/var/run/${SVCNAME}.pid"
+
+depend() {
+ need avahi-daemon
+}
+
+start() {
+ ebegin "Starting ${SVCNAME}"
+ start-stop-daemon --start --exec "${command}" \
+ --pidfile "${pidfile}" --make-pidfile --background
+ eend $?
+}
+
+stop() {
+ ebegin "Starting ${SVCNAME}"
+ start-stop-daemon --stop --exec "${command}" \
+ --pidfile "${pidfile}"
+ eend $?
+}