[Python-modules-commits] r23624 - in packages/celery/branches/wheezy/debian (2 files)

fladi-guest at users.alioth.debian.org fladi-guest at users.alioth.debian.org
Fri Mar 1 11:35:17 UTC 2013


    Date: Friday, March 1, 2013 @ 11:35:16
  Author: fladi-guest
Revision: 23624

Unconditionally remove logfiles directory on purge.

Modified:
  packages/celery/branches/wheezy/debian/changelog
  packages/celery/branches/wheezy/debian/python-celery.postrm

Modified: packages/celery/branches/wheezy/debian/changelog
===================================================================
--- packages/celery/branches/wheezy/debian/changelog	2013-03-01 09:44:35 UTC (rev 23623)
+++ packages/celery/branches/wheezy/debian/changelog	2013-03-01 11:35:16 UTC (rev 23624)
@@ -1,3 +1,9 @@
+celery (2.5.3-4) unstable; urgency=low
+
+  * Unconditionally remove /var/log/celery on purge.
+
+ -- Michael Fladischer <FladischerMichael at fladi.at>  Fri, 01 Mar 2013 12:17:32 +0100
+
 celery (2.5.3-3) unstable; urgency=low
 
   * Remove logfiles during purge if user and group are removed.

Modified: packages/celery/branches/wheezy/debian/python-celery.postrm
===================================================================
--- packages/celery/branches/wheezy/debian/python-celery.postrm	2013-03-01 09:44:35 UTC (rev 23623)
+++ packages/celery/branches/wheezy/debian/python-celery.postrm	2013-03-01 11:35:16 UTC (rev 23624)
@@ -4,8 +4,8 @@
 
 case "$1" in
     purge)
+        rm -rf /var/log/celery
         if [ -x "$(command -v deluser)" ]; then
-            rm -rf /var/log/celery
             deluser --quiet --system celery > /dev/null || true
             deluser --group --system --quiet --only-if-empty celery || true
         else




More information about the Python-modules-commits mailing list