[Pkg-xfce-commits] r8080 - in /goodies/trunk/lightdm/debian: changelog lightdm.postrm

Yves-Alexis Perez corsac at moszumanska.debian.org
Wed Dec 4 10:16:17 UTC 2013


Author: corsac
Date: Wed Dec  4 10:16:16 2013
New Revision: 8080

URL: http://svn.debian.org/wsvn/pkg-xfce/?sc=1&rev=8080
Log:
debian/lightdm.postrm: warn if user/group deletion failed.  closes: #731220

Modified:
    goodies/trunk/lightdm/debian/changelog
    goodies/trunk/lightdm/debian/lightdm.postrm

Modified: goodies/trunk/lightdm/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-xfce/goodies/trunk/lightdm/debian/changelog?rev=8080&op=diff
==============================================================================
--- goodies/trunk/lightdm/debian/changelog	(original)
+++ goodies/trunk/lightdm/debian/changelog	Wed Dec  4 10:16:16 2013
@@ -1,3 +1,9 @@
+lightdm (1.8.5-3) UNRELEASED; urgency=low
+
+  * debian/lightdm.postrm: warn if user/group deletion failed.  closes: #731220
+
+ -- Yves-Alexis Perez <corsac at debian.org>  Wed, 04 Dec 2013 11:15:36 +0100
+
 lightdm (1.8.5-2) unstable; urgency=medium
 
   * debian/patches:

Modified: goodies/trunk/lightdm/debian/lightdm.postrm
URL: http://svn.debian.org/wsvn/pkg-xfce/goodies/trunk/lightdm/debian/lightdm.postrm?rev=8080&op=diff
==============================================================================
--- goodies/trunk/lightdm/debian/lightdm.postrm	(original)
+++ goodies/trunk/lightdm/debian/lightdm.postrm	Wed Dec  4 10:16:16 2013
@@ -20,12 +20,12 @@
         fi
         if getent passwd lightdm >/dev/null; then
                 if [ -x /usr/sbin/deluser ]; then
-                        deluser --system lightdm
+                        deluser --system lightdm ||echo " Could not remove lightdm user, please make sure lightdm is not running before attempting to purge lightdm" 
                 fi
         fi
         if getent group lightdm >/dev/null; then
                 if [ -x /usr/sbin/delgroup ]; then
-                        delgroup --system lightdm
+                        delgroup --system lightdm || echo "Could not remove lightdm group, please make sure lightdm is not running before attempting to purge lightdm"
                 fi
         fi
 fi




More information about the Pkg-xfce-commits mailing list