From a4d309341dbcd3c28ee68e818c1d5ef54114adf8 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 6 Nov 2011 23:15:07 +0000 Subject: Sun Nov 6 23:15:07 UTC 2011 --- community-testing/minidlna/minidlna.rc | 48 ++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100755 community-testing/minidlna/minidlna.rc (limited to 'community-testing/minidlna/minidlna.rc') diff --git a/community-testing/minidlna/minidlna.rc b/community-testing/minidlna/minidlna.rc new file mode 100755 index 000000000..df44a549f --- /dev/null +++ b/community-testing/minidlna/minidlna.rc @@ -0,0 +1,48 @@ +#!/bin/bash + +. /etc/rc.conf +. /etc/rc.d/functions +. /etc/minidlna.conf +. /etc/conf.d/minidlna + +PID=`pidof -o %PPID /usr/sbin/minidlna` + +case "$1" in + start) + stat_busy "Starting minidlna" + [ -z "$PID" ] && su -s /bin/sh -l -c /usr/sbin/minidlna - $MINIDLNA_USER + if [ $? -gt 0 ]; then + stat_fail + else + add_daemon minidlna + stat_done + fi + ;; + stop) + stat_busy "Stopping minidlna" + [ ! -z "$PID" ] && kill $PID &> /dev/null + if [ $? -gt 0 ]; then + stat_fail + else + rm_daemon minidlna + stat_done + fi + ;; + clean) + $0 stop + sleep 1 + stat_busy "Cleaning minidlna cache" + [ -z $db_dir ] || rm -r $db_dir/* + stat_done + sleep 1 + $0 start + ;; + restart) + $0 stop + sleep 1 + $0 start + ;; + *) + echo "usage: $0 {start|stop|restart|clean}" +esac +exit 0 -- cgit v1.2.3-54-g00ecf