[Pkg-voip-commits] r7586 - in /mumble-django/trunk/debian: changelog mumble-django.postrm

svedrin-guest at alioth.debian.org svedrin-guest at alioth.debian.org
Wed Sep 9 07:52:23 UTC 2009


Author: svedrin-guest
Date: Wed Sep  9 07:52:21 2009
New Revision: 7586

URL: http://svn.debian.org/wsvn/pkg-voip/?sc=1&rev=7586
Log:
fix Munin plugin not being uninstalled when Mumble-Django is being purged.

Modified:
    mumble-django/trunk/debian/changelog
    mumble-django/trunk/debian/mumble-django.postrm

Modified: mumble-django/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-voip/mumble-django/trunk/debian/changelog?rev=7586&op=diff
==============================================================================
--- mumble-django/trunk/debian/changelog (original)
+++ mumble-django/trunk/debian/changelog Wed Sep  9 07:52:21 2009
@@ -1,8 +1,12 @@
 mumble-django (0.10-3) UNRELEASED; urgency=low
 
+  [ Kilian Krause ]
   * NOT RELEASED YET
 
- -- Kilian Krause <kilian at debian.org>  Mon, 07 Sep 2009 19:30:39 +0200
+  [ Michael Ziegler ]
+  * Fix Munin plugin not being uninstalled during Purge.
+
+ -- Michael Ziegler <diese-addy at funzt-halt.net>  Wed, 09 Sep 2009 09:51:05 +0200
 
 mumble-django (0.10-2) unstable; urgency=medium
 

Modified: mumble-django/trunk/debian/mumble-django.postrm
URL: http://svn.debian.org/wsvn/pkg-voip/mumble-django/trunk/debian/mumble-django.postrm?rev=7586&op=diff
==============================================================================
--- mumble-django/trunk/debian/mumble-django.postrm (original)
+++ mumble-django/trunk/debian/mumble-django.postrm Wed Sep  9 07:52:21 2009
@@ -4,13 +4,15 @@
 
 if [ -x "`which invoke-rc.d 2>/dev/null`" ] ; then
 	invoke-rc.d --quiet apache2 reload
+fi
+
+if [ "$1" = "purge" ] ; then
+	rm -rf /var/lib/mumble-django
+	# mumble-django-configure might have installed the Munin plugin.
+	rm -rf /etc/munin/plugins/mumble-django
 	if [ -x /etc/init.d/munin-node ]; then
 		invoke-rc.d --quiet munin-node restart
 	fi
 fi
 
-if [ "$1" = "purge" ] ; then
-	rm -rf /var/lib/mumble-django
-fi
-
 #DEBHELPER#




More information about the Pkg-voip-commits mailing list