Control: tag -1 pending Dear maintainer,
I've prepared an NMU for lurker (versioned as 2.3-4.1) and uploaded it to DELAYED/5. Please feel free to tell me if I should delay it longer. Regards, -- Colin Watson [cjwat...@debian.org]
diff -Nru lurker-2.3/debian/changelog lurker-2.3/debian/changelog --- lurker-2.3/debian/changelog 2013-12-13 15:19:38.000000000 +0000 +++ lurker-2.3/debian/changelog 2014-01-17 12:35:47.000000000 +0000 @@ -1,3 +1,11 @@ +lurker (2.3-4.1) unstable; urgency=medium + + * Non-maintainer upload. + * Pass "-s /bin/sh" to "su www-data" to cope with the change of www-data's + shell in base-passwd 3.5.30 (closes: #734731). + + -- Colin Watson <cjwat...@debian.org> Fri, 17 Jan 2014 12:35:47 +0000 + lurker (2.3-4) unstable; urgency=low * incorporate patches from upstream svn repository: diff -Nru lurker-2.3/debian/postinst lurker-2.3/debian/postinst --- lurker-2.3/debian/postinst 2013-12-13 14:57:45.000000000 +0000 +++ lurker-2.3/debian/postinst 2014-01-17 12:30:18.000000000 +0000 @@ -79,7 +79,7 @@ # clean web cache if [ -x /usr/bin/lurker-prune ] && [ -f /etc/lurker/lurker.conf ] && [ -f /var/lib/lurker/db ]; then echo "Pruning the lurker webserver cache." - su - www-data -c "/usr/bin/lurker-prune -p" + su - www-data -s /bin/sh -c "/usr/bin/lurker-prune -p" fi ;; abort-upgrade|abort-remove|abort-deconfigure) diff -Nru lurker-2.3/debian/prerm lurker-2.3/debian/prerm --- lurker-2.3/debian/prerm 2011-09-19 11:51:07.000000000 +0100 +++ lurker-2.3/debian/prerm 2014-01-17 12:30:25.000000000 +0000 @@ -12,7 +12,7 @@ remove) if [ -x /usr/bin/lurker-prune ] && [ -f /etc/lurker/lurker.conf ] && [ -f /var/lib/lurker/db ]; then echo "Pruning the lurker webserver cache." - su - www-data -c "/usr/bin/lurker-prune -p" + su - www-data -s /bin/sh -c "/usr/bin/lurker-prune -p" fi ;;