Package: release.debian.org Severity: normal User: release.debian....@packages.debian.org Usertags: unblock
Hello, Please unblock package uwsgi. There is a bug with a release in Wheezy that is making init script useless after a reload. The fix is to remove `name` parameter from start-stop-daemon. I am sending debdiff. unblock uwsgi/1.2.3+dfsg-3 -- System Information: Debian Release: wheezy/sid APT prefers testing APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.4-trunk-amd64 (SMP w/4 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash
diff -Nru uwsgi-1.2.3+dfsg/debian/changelog uwsgi-1.2.3+dfsg/debian/changelog --- uwsgi-1.2.3+dfsg/debian/changelog 2012-07-16 22:05:11.000000000 +0200 +++ uwsgi-1.2.3+dfsg/debian/changelog 2012-08-20 13:02:48.000000000 +0200 @@ -1,3 +1,10 @@ +uwsgi (1.2.3+dfsg-3) unstable; urgency=low + + * Remove `name` option from start-stop-daemon as master process is + changing its name on reloads. Thanks Andreas Motl for the patch. + + -- Janos Guljas <ja...@resenje.org> Mon, 20 Aug 2012 12:32:43 +0200 + uwsgi (1.2.3+dfsg-2) unstable; urgency=low * Remove uwsgi-plugin-luajit binary package. (Closes: #680132) diff -Nru uwsgi-1.2.3+dfsg/debian/uwsgi-files/init/specific_daemon uwsgi-1.2.3+dfsg/debian/uwsgi-files/init/specific_daemon --- uwsgi-1.2.3+dfsg/debian/uwsgi-files/init/specific_daemon 2012-03-17 20:46:49.000000000 +0100 +++ uwsgi-1.2.3+dfsg/debian/uwsgi-files/init/specific_daemon 2012-08-20 12:31:27.000000000 +0200 @@ -79,8 +79,7 @@ start-stop-daemon --stop --quiet \ --retry=QUIT/30/KILL/5 \ - --pidfile "$PIDFILE" \ - --name "$NAME" + --pidfile "$PIDFILE" RETVAL="$?" [ "$RETVAL" = 2 ] && return 2 @@ -100,8 +99,7 @@ start-stop-daemon --stop --quiet \ --signal=HUP \ - --pidfile "$PIDFILE" \ - --name "$NAME" + --pidfile "$PIDFILE" RETVAL="$?" @@ -121,8 +119,7 @@ start-stop-daemon --stop --quiet \ --signal=TERM \ - --pidfile "$PIDFILE" \ - --name "$NAME" + --pidfile "$PIDFILE" RETVAL="$?"