r36188 - in /desktop/unstable/gdm3/debian: changelog gdm3.postrm
smcv at users.alioth.debian.org
smcv at users.alioth.debian.org
Thu Oct 25 20:51:14 UTC 2012
Author: smcv
Date: Thu Oct 25 20:51:14 2012
New Revision: 36188
URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=36188
Log:
* Team upload
* Apply patch from Paul Wise to avoid userdel error messages
from being used as input for debconf if gdm3 is purged while
processes are still running as Debian-gdm (Closes: #657751)
Modified:
desktop/unstable/gdm3/debian/changelog
desktop/unstable/gdm3/debian/gdm3.postrm
Modified: desktop/unstable/gdm3/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gdm3/debian/changelog?rev=36188&op=diff
==============================================================================
--- desktop/unstable/gdm3/debian/changelog [utf-8] (original)
+++ desktop/unstable/gdm3/debian/changelog [utf-8] Thu Oct 25 20:51:14 2012
@@ -1,3 +1,12 @@
+gdm3 (3.4.1-4) unstable; urgency=low
+
+ * Team upload
+ * Apply patch from Paul Wise to avoid userdel error messages
+ from being used as input for debconf if gdm3 is purged while
+ processes are still running as Debian-gdm (Closes: #657751)
+
+ -- Simon McVittie <smcv at debian.org> Thu, 25 Oct 2012 21:31:25 +0100
+
gdm3 (3.4.1-3) unstable; urgency=low
* Drop suggests on gnome-mag.
Modified: desktop/unstable/gdm3/debian/gdm3.postrm
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gdm3/debian/gdm3.postrm?rev=36188&op=diff
==============================================================================
--- desktop/unstable/gdm3/debian/gdm3.postrm [utf-8] (original)
+++ desktop/unstable/gdm3/debian/gdm3.postrm [utf-8] Thu Oct 25 20:51:14 2012
@@ -1,5 +1,12 @@
#!/bin/sh
set -e
+
+# Need to load this before any output on stdout/stderr
+# otherwise the debconf command-stream will get
+# some invalid input and cause the failure of postrm.
+if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
+ . /usr/share/debconf/confmodule
+fi
if [ "$1" = "purge" ] ; then
update-rc.d gdm3 remove >/dev/null
More information about the pkg-gnome-commits
mailing list