[Pkg-voip-commits] r8489 - in /mumble-django/trunk/debian: changelog mumble-django.postinst
svedrin-guest at alioth.debian.org
svedrin-guest at alioth.debian.org
Mon Jun 14 15:08:10 UTC 2010
Author: svedrin-guest
Date: Mon Jun 14 15:08:06 2010
New Revision: 8489
URL: http://svn.debian.org/wsvn/pkg-voip/?sc=1&rev=8489
Log:
* Remove call to invoke-rc.d mumble-server start (m-d-c does that itself).
* Remove call to invoke-rc.d munin-node restart (m-d-c does that itself).
* Only call invoke-rc.d apache2 reload if Apache2 is actually installed.
Modified:
mumble-django/trunk/debian/changelog
mumble-django/trunk/debian/mumble-django.postinst
Modified: mumble-django/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-voip/mumble-django/trunk/debian/changelog?rev=8489&op=diff
==============================================================================
--- mumble-django/trunk/debian/changelog (original)
+++ mumble-django/trunk/debian/changelog Mon Jun 14 15:08:06 2010
@@ -1,8 +1,11 @@
mumble-django (2.1-2) UNRELEASED; urgency=low
* Bump dependency to python-zeroc-ice to 3.3.1-12 (needed for Murmur 1.2.3).
-
- -- Michael Ziegler <diese-addy at funzt-halt.net> Sun, 16 May 2010 11:39:13 +0200
+ * Remove call to invoke-rc.d mumble-server start (m-d-c does that itself).
+ * Remove call to invoke-rc.d munin-node restart (m-d-c does that itself).
+ * Only call invoke-rc.d apache2 reload if Apache2 is actually installed.
+
+ -- Michael Ziegler <diese-addy at funzt-halt.net> Mon, 14 Jun 2010 17:06:58 +0200
mumble-django (2.1-1) unstable; urgency=low
Modified: mumble-django/trunk/debian/mumble-django.postinst
URL: http://svn.debian.org/wsvn/pkg-voip/mumble-django/trunk/debian/mumble-django.postinst?rev=8489&op=diff
==============================================================================
--- mumble-django/trunk/debian/mumble-django.postinst (original)
+++ mumble-django/trunk/debian/mumble-django.postinst Mon Jun 14 15:08:06 2010
@@ -3,14 +3,11 @@
set -e
if [ "$1" = "configure" ] ; then
- invoke-rc.d --quiet mumble-server start
-
chown -R www-data:www-data /var/lib/mumble-django
chown -R www-data:www-data /usr/share/mumble-django
- invoke-rc.d --quiet apache2 reload
- if [ -x /etc/init.d/munin-node ]; then
- invoke-rc.d --quiet munin-node restart
+ if [ -x /etc/init.d/apache2 ]; then
+ invoke-rc.d --quiet apache2 reload
fi
echo "To finish the installation of Mumble-Django, please run mumble-django-configure."
More information about the Pkg-voip-commits
mailing list