From: "Benoît Thébaudeau" <benoit@wsystem.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH] package/minidlna/S60minidlnad: add force-reload to rebuild DB
Date: Fri, 21 Aug 2015 19:55:18 +0200 [thread overview]
Message-ID: <1440179718-1864-1-git-send-email-benoit@wsystem.com> (raw)
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>
---
package/minidlna/S60minidlnad | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/package/minidlna/S60minidlnad b/package/minidlna/S60minidlnad
index f99999a..b4b62ba 100644
--- a/package/minidlna/S60minidlnad
+++ b/package/minidlna/S60minidlnad
@@ -7,7 +7,7 @@ start() {
echo -n "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
--
2.1.4
next reply other threads:[~2015-08-21 17:55 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-08-21 17:55 Benoît Thébaudeau [this message]
2015-11-28 18:06 ` [Buildroot] [PATCH] package/minidlna/S60minidlnad: add force-reload to rebuild DB Thomas Petazzoni
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1440179718-1864-1-git-send-email-benoit@wsystem.com \
--to=benoit@wsystem.com \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox