Package: roundup
Version: 1.4.18-1
Followup-For: Bug #640588
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu precise ubuntu-patch

In Debian sid, the attached patch can be applied to achieve the following:

  * debian/roundup.postrm: Remove obsolete --quiet option passed to
    userdel and groupdel. (Closes: #640588)


Thanks for considering the patch.


-- System Information:
Debian Release: wheezy/sid
  APT prefers oneiric-updates
  APT policy: (500, 'oneiric-updates'), (500, 'oneiric-security'), (500, 
'oneiric-proposed'), (500, 'oneiric')
Architecture: amd64 (x86_64)

Kernel: Linux 3.0.0-12-generic (SMP w/8 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 roundup-1.4.18/debian/roundup.postrm roundup-1.4.18/debian/roundup.postrm
--- roundup-1.4.18/debian/roundup.postrm	2011-05-30 18:30:55.000000000 -0400
+++ roundup-1.4.18/debian/roundup.postrm	2011-11-02 22:40:05.000000000 -0400
@@ -4,13 +4,13 @@
 
 check_and_delete_user() {
 	if [ `getent passwd $U` ]; then
-		userdel --quiet $U
+		userdel $U >/dev/null 2>&1
 	fi
 }
 
 check_and_delete_group() {
         if [ X"`getent group $U`" != X ]; then
-                groupdel --quiet $U || true
+                groupdel $U >/dev/null 2>&1 || true
         fi
 }
 

Reply via email to