[Pkg-drupal-commits] r2139 - in /branches/drupal6/debian: changelog cron.d
luigi at users.alioth.debian.org
luigi at users.alioth.debian.org
Sun Jun 6 23:23:59 UTC 2010
Author: luigi
Date: Sun Jun 6 23:23:53 2010
New Revision: 2139
URL: http://svn.debian.org/wsvn/pkg-drupal/?sc=1&rev=2139
Log:
Fixed conditional to avoid warnings on removed package (Closes: #582430)
Modified:
branches/drupal6/debian/changelog
branches/drupal6/debian/cron.d
Modified: branches/drupal6/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-drupal/branches/drupal6/debian/changelog?rev=2139&op=diff
==============================================================================
--- branches/drupal6/debian/changelog (original)
+++ branches/drupal6/debian/changelog Sun Jun 6 23:23:53 2010
@@ -5,6 +5,9 @@
* debian/cron.sh
- Added --fail option to curl to work around missing base_url in
configuration files (Closes: #561419)
+
+ * debian/cron.d
+ - Fixed conditional to avoid warnings on removed package (Closes: #582430)
-- Luigi Gangitano <luigi at debian.org> Sun, 06 Jun 2010 22:31:57 +0200
Modified: branches/drupal6/debian/cron.d
URL: http://svn.debian.org/wsvn/pkg-drupal/branches/drupal6/debian/cron.d?rev=2139&op=diff
==============================================================================
--- branches/drupal6/debian/cron.d (original)
+++ branches/drupal6/debian/cron.d Sun Jun 6 23:23:53 2010
@@ -1,1 +1,1 @@
-0 * * * * www-data [ -x /usr/share/drupal6/scripts/cron.sh ] && /usr/share/drupal6/scripts/cron.sh
+0 * * * * www-data if test -x /usr/share/drupal6/scripts/cron.sh ; then /usr/share/drupal6/scripts/cron.sh ; fi
More information about the Pkg-drupal-commits
mailing list