summaryrefslogtreecommitdiff
path: root/community-testing/minidlna/minidlna.rc
diff options
context:
space:
mode:
Diffstat (limited to 'community-testing/minidlna/minidlna.rc')
-rwxr-xr-xcommunity-testing/minidlna/minidlna.rc48
1 files changed, 0 insertions, 48 deletions
diff --git a/community-testing/minidlna/minidlna.rc b/community-testing/minidlna/minidlna.rc
deleted file mode 100755
index df44a549f..000000000
--- a/community-testing/minidlna/minidlna.rc
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/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