[pkg-bacula-commits] [SCM] Bacula, a network backup, recovery and verification program branch, master, updated. debian/5.2.6+dfsg-2-4-g7f9def1

Alexander Golovko alexandro at ankalagon.ru
Tue Jul 3 18:02:08 UTC 2012


The following commit has been merged in the master branch:
commit 7f9def1fd9ba58d803f496967e249dde51028e68
Author: Alexander Golovko <alexandro at ankalagon.ru>
Date:   Tue Jul 3 21:59:20 2012 +0400

    suppress userdel errors output (thanks to ubuntu)

diff --git a/debian/bacula-common.postrm b/debian/bacula-common.postrm
index 2e95566..16385e2 100644
--- a/debian/bacula-common.postrm
+++ b/debian/bacula-common.postrm
@@ -5,7 +5,7 @@ set -e
 
 case "$1" in
 	purge)
-		userdel bacula 2>&1 > /dev/null || true
+		userdel bacula >/dev/null 2>&1 || true
 		rm -rf /var/run/bacula
 		rm -rf /etc/bacula
 		rm -rf /var/log/bacula
diff --git a/debian/changelog b/debian/changelog
index 1373647..db3eff1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,8 @@ bacula (5.2.6+dfsg-3) unstable; urgency=high
   * debian/bacula-director-*.postinst, debian/bacula-director-*.templates,
     debian/po/*, debian/addition/common-functions.dpkg:
     + fix unsafe bacula-director passwords.
+  * debian/bacula-common.postrm:
+    + suppress userdel errors output (thanks to ubuntu).
 
  --
 

-- 
Bacula, a network backup, recovery and verification program



More information about the pkg-bacula-commits mailing list