package/minidlna/S60minidlnad: add force-reload to rebuild DB
authorBenoît Thébaudeau <benoit@wsystem.com>
Fri, 21 Aug 2015 17:55:18 +0000 (19:55 +0200)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Sat, 28 Nov 2015 18:02:51 +0000 (19:02 +0100)
Add a force-reload operation that restarts minidlnad and makes it
rebuild its database. This is what Debian does, and this is useful when
media_dir is changed in the configuration file or when inotify can not
detect changes inside the media directories (e.g. in case of a mount).

Signed-off-by: Benoît Thébaudeau <benoit@wsystem.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/minidlna/S60minidlnad

index 92b4c953e69e6d3de6aa5b3d2535a364c033e3dc..9b158afd98c78bcadc4ac98209ae724fbd712d03 100644 (file)
@@ -7,7 +7,7 @@ start() {
        printf "Starting minidlna: "
        umask 077
        start-stop-daemon -S -q -p /var/run/minidlna/minidlna.pid \
-               --exec /usr/sbin/minidlnad
+               --exec /usr/sbin/minidlnad -- "$@"
        [ $? = 0 ] && echo "OK" || echo "FAIL"
 }
 stop() {
@@ -19,7 +19,7 @@ restart() {
        stop
        # Sleep needed for minidlna to restart properly
        sleep 1
-       start
+       start "$@"
 }
 
 case "$1" in
@@ -32,8 +32,11 @@ case "$1" in
   restart|reload)
        restart
        ;;
+  force-reload)
+       restart -R
+       ;;
   *)
-       echo "Usage: $0 {start|stop|restart}"
+       echo "Usage: $0 {start|stop|restart|force-reload}"
        exit 1
 esac