| Summary: | Fix init script | ||
|---|---|---|---|
| Product: | buildroot | Reporter: | Bin Zhang <yangtze31> |
| Component: | Other | Assignee: | Carlos Santos <casantos> |
| Status: | RESOLVED FIXED | ||
| Severity: | minor | CC: | buildroot |
| Priority: | P5 | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Host: | Target: | ||
| Build: | |||
(In reply to Bin Zhang from comment #0) Thanks for reporting this bug. A patch to fix it has been submitted: https://patchwork.ozlabs.org/patch/1017084/ Patch updated: https://patchwork.ozlabs.org/patch/1017087/ Please check if this bug is solved after commit 6568b939293e46718434e284bded04b746fbd80f in the master branch and change the status to VERIFIED. |
Hello, The init script restart and stop don't work. Thanks, Bin Zhang --- S99shairport-sync.orig 2018-12-18 18:46:22.096225172 +0100 +++ S99shairport-sync 2018-12-18 18:47:30.360227688 +0100 @@ -6,16 +6,17 @@ case "$1" in start) printf "Starting shairport-sync: " - start-stop-daemon -S -q -p /var/run/shairport-sync.pid --exec /usr/bin/shairport-sync -- $OPTIONS + start-stop-daemon -S -q --exec /usr/bin/shairport-sync -- $OPTIONS [ $? = 0 ] && echo "OK" || echo "FAIL" ;; stop) printf "Stopping shairport-sync: " - start-stop-daemon -K -q -p /var/run/shairport-sync.pid + start-stop-daemon -K -q -p /var/run/shairport-sync/shairport-sync.pid [ $? = 0 ] && echo "OK" || echo "FAIL" ;; restart) $0 stop + sleep 1 $0 start ;; *)