Bugs apt-cacher-ng: 192.168.1.150:3142 echo 'Acquire::http { Proxy "http://192.168.1.150:3142";}' > /etc/apt/apt.conf.d/00_apt-cacher-ng-proxy apt-get install squid-deb-proxy-client * https://bugs.debian.org/666743 - helmutg send an updated patch. still WIP * https://bugs.debian.org/792851 - numed/10 - helmutg * https://bugs.debian.org/798955 - helmutg made some progress towards an archive rebuild * https://bugs.debian.org/810583 - verified, closed - gladk * https://bugs.debian.org/822020 - uploaded, patch from BTS, quixote - tobi * https://bugs.debian.org/857954 - (rc) analysed. two solutions proposed. downgraded - helmutg * https://bugs.debian.org/866421 - TzTz * https://bugs.debian.org/869165 - downgraded severity, unreproducible, tobi * https://bugs.debian.org/877090 - downgraded severity, +Patch - tobi, txt.file * https://bugs.debian.org/877392 - fix uploaded - gladk * https://bugs.debian.org/878101 - closed (was not closed with upload - tobi * https://bugs.debian.org/880047 - petn-randall → postgrey, not reproducible, marked as notfound in stable * https://bugs.debian.org/880393 - nmued/10 - helmutg * https://bugs.debian.org/883114 - fix uploaded - gladk * https://bugs.debian.org/884597 - downgraded severity, commented - txt.file * https://bugs.debian.org/886570 - fix uploaded - gladk * https://bugs.debian.org/889961 - petn-randall → triaged, closed * https://bugs.debian.org/889996 - petn-randall → resiprocate-turn-server: should be trivial to fix (Patch below) * https://bugs.debian.org/891551 - faketime NMU/DELAYED2 - tobi * https://bugs.debian.org/892281 - (wishlist) patch supplied - helmutg * https://bugs.debian.org/895115 - stefan * https://bugs.debian.org/900910 - closed (no fix needed) - gladk * https://bugs.debian.org/905351 - helmutg answered https://bugs.debian.org/900678 - slic3r -> triaged and reassigned to wxwidgets3.0. * https://bugs.debian.org/902200 - fix uploaded - gladk * https://bugs.debian.org/907346 - slic3r -> patch supplied - tobi * https://bugs.debian.org/907413 - answered, closed, no normal fixes for the version in stable - gladk * https://bugs.debian.org/909035 - petn-randall → * https://bugs.debian.org/909946 - filed + patch - helmutg * Prepare and upload wslay_1.1.0-1, make hopefully the package cross-compilable (thanks @helmutg!) - gladk * Prepare and upload alglib_3.14.0-1~exp1 - gladk ------------------------ From 91df28d86841657f6bb28cf9b1d0d1e04953c4bd Mon Sep 17 00:00:00 2001 From: Matthias Fritzsche Date: Sat, 29 Sep 2018 14:45:42 +0200 Subject: [PATCH] change init script to use "--retry" and remove sleep add "--retry 2" to stop and reload remove sleep from restart closes bugs.debian.org/889996 Signed-off-by: Matthias Fritzsche --- debian/resiprocate-turn-server.init | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/debian/resiprocate-turn-server.init b/debian/resiprocate-turn-server.init index 147ab4308..888a29257 100644 --- a/debian/resiprocate-turn-server.init +++ b/debian/resiprocate-turn-server.init @@ -58,7 +58,7 @@ case "$1" in ;; stop) log_daemon_msg "Stopping $DESC ($NAME)" $BIN - if start-stop-daemon --stop --quiet --oknodo --user $USER --pidfile $PIDFILE --exec $DAEMON ; + if start-stop-daemon --stop --quiet --oknodo --user $USER --pidfile $PIDFILE --exec $DAEMON --retry 2; then log_end_msg 0 else @@ -77,13 +77,13 @@ case "$1" in reload|force-reload) log_daemon_msg "Reloading $DESC ($NAME)" $BIN if [ -f "$PIDFILE" ] ; then - start-stop-daemon --stop --signal HUP --quiet --pidfile $PIDFILE --name $BIN || rc=$? + start-stop-daemon --stop --signal HUP --quiet --pidfile $PIDFILE --name $BIN --retry 2 || rc=$? else log_failure_msg "$NAME can't find PID file $PIDFILE" fi ;; restart) - $0 stop && sleep 2 && $0 start + $0 stop && $0 start ;; *) N=/etc/init.d/$NAME -- 2.19.0