[Pkg-voip-commits] r7299 - in /mumble-django/trunk/debian: changelog mumble-django.prerm
pmatthaei at alioth.debian.org
pmatthaei at alioth.debian.org
Fri May 29 19:08:12 UTC 2009
Author: pmatthaei
Date: Fri May 29 19:08:11 2009
New Revision: 7299
URL: http://svn.debian.org/wsvn/pkg-voip/?sc=1&rev=7299
Log:
* Only execute apache2ctl and a2dissite, if they are available on the system.
Modified:
mumble-django/trunk/debian/changelog
mumble-django/trunk/debian/mumble-django.prerm
Modified: mumble-django/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-voip/mumble-django/trunk/debian/changelog?rev=7299&op=diff
==============================================================================
--- mumble-django/trunk/debian/changelog (original)
+++ mumble-django/trunk/debian/changelog Fri May 29 19:08:11 2009
@@ -1,5 +1,6 @@
mumble-django (0.7-1) UNRELEASED; urgency=low
+ [ Michael Ziegler ]
* Added copyright information about the Icons in the channel viewer to
COPYRIGHT.
* Fixed bug that prevented various settings from being applied to Murmur.
@@ -9,7 +10,10 @@
* Added Mumble icon as favicon
* Replaced YAML template with a self-written one due to license issues.
- -- Michael Ziegler <diese-addy at funzt-halt.net> Tue, 19 May 2009 10:30:15 +0200
+ [ Patrick Matthäi ]
+ * Only execute apache2ctl and a2dissite, if they are available on the system.
+
+ -- Patrick Matthäi <pmatthaei at debian.org> Fri, 29 May 2009 21:07:36 +0200
mumble-django (0.6-2) unstable; urgency=low
Modified: mumble-django/trunk/debian/mumble-django.prerm
URL: http://svn.debian.org/wsvn/pkg-voip/mumble-django/trunk/debian/mumble-django.prerm?rev=7299&op=diff
==============================================================================
--- mumble-django/trunk/debian/mumble-django.prerm (original)
+++ mumble-django/trunk/debian/mumble-django.prerm Fri May 29 19:08:11 2009
@@ -1,5 +1,13 @@
#!/bin/sh
+
set -e
-a2dissite mumble-django
-apache2ctl graceful
+
+if [ -x "`which a2dissite 2>/dev/null`" ] ; then
+ a2dissite mumble-django
+fi
+
+if [ -x "`which apache2ctl 2>/dev/null`" ] ; then
+ apache2ctl graceful
+fi
+
#DEBHELPER#
More information about the Pkg-voip-commits
mailing list