[Pkg-drupal-commits] r2144 - in /branches/drupal6/debian: changelog drupal6.postrm
luigi at users.alioth.debian.org
luigi at users.alioth.debian.org
Mon Jun 28 13:27:16 UTC 2010
Author: luigi
Date: Mon Jun 28 13:27:12 2010
New Revision: 2144
URL: http://svn.debian.org/wsvn/pkg-drupal/?sc=1&rev=2144
Log:
Made postrm check for restart.sh in case dependencies were not properly installed (thanks to Bhavani Shankar.R, from Ubuntu)
Modified:
branches/drupal6/debian/changelog
branches/drupal6/debian/drupal6.postrm
Modified: branches/drupal6/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-drupal/branches/drupal6/debian/changelog?rev=2144&op=diff
==============================================================================
--- branches/drupal6/debian/changelog (original)
+++ branches/drupal6/debian/changelog Mon Jun 28 13:27:12 2010
@@ -4,6 +4,10 @@
* debian/control
- Removed dependency on exim4, now depends on default-mda (Closes: #587239)
+
+ * debian/drupal6.postrm
+ - Made postrm check for restart.sh in case dependencies were not properly
+ installed (thanks to Bhavani Shankar.R, from Ubuntu)
-- Luigi Gangitano <luigi at debian.org> Mon, 28 Jun 2010 15:20:57 +0200
Modified: branches/drupal6/debian/drupal6.postrm
URL: http://svn.debian.org/wsvn/pkg-drupal/branches/drupal6/debian/drupal6.postrm?rev=2144&op=diff
==============================================================================
--- branches/drupal6/debian/drupal6.postrm (original)
+++ branches/drupal6/debian/drupal6.postrm Mon Jun 28 13:27:12 2010
@@ -55,7 +55,10 @@
fi
servers="apache2"
- . /usr/share/wwwconfig-common/restart.sh
+ # may not exist if package was manually installed
+ if [ -r /usr/share/wwwconfig-common/restart.sh ]; then
+ . /usr/share/wwwconfig-common/restart.sh
+ fi
# Remove configuration files (conf.php, $SITE.php)
More information about the Pkg-drupal-commits
mailing list