View Issue Details

IDProjectCategoryView StatusLast Update
315WADFCorepublic24 Jan 2010 21:56
Reportermrosenquist Assigned Totimj  
PrioritynormalSeverityfeatureReproducibilityN/A
Status closedResolutionfixed 
Target Version0.13.3Fixed in Version0.13.3 
Summary315: Change the ordering of wadf-(reprocess/deploy) so that installing the crontab is the last operation
DescriptionChange the ordering of wadf-(reprocess/deploy) so that installing the crontab is the last operation.

The cron tasks could relay on information from the kick start scripts and should be executed afterwards
TagsNo tags attached.
Attached Files
WADF.php-bug315.patch (360 bytes)   
--- WADF (copy).php	1970-01-01 10:13:24.000000000 +0100
+++ WADF.php	2009-12-18 12:16:17.000000000 +0000
@@ -239,8 +239,8 @@
 		}
 		$this->deployVhost();
 		$this->deployDNS();
-		$this->deployScheduledJobs();
 		$this->runKickstart($db_deploy);
+		$this->deployScheduledJobs();
 		$this->postDeploy();
 		$this->cleanupFiles();
 		$this->restartWebserver();
WADF.php-bug315.patch (360 bytes)   
wadf-reprocess-bug315.patch (529 bytes)   
--- wadf-reprocess (copy)	2009-12-18 12:11:56.000000000 +0000
+++ wadf-reprocess	2009-12-18 12:14:57.000000000 +0000
@@ -246,10 +246,7 @@
 if ($template_processing) {
 	$wadf->deployVhost($dir);
 	$wadf->deployDNS();
-	$wadf->deployScheduledJobs();
-	$wadf->postDeploy();
-	$wadf->restartWebserver();
-	$wadf->cleanupFiles();
+	$wadf->postDeploy()
 }
 
 if ($kickstart_prompt) {
@@ -266,3 +263,8 @@
 		}
 	}
 }
+if ($template_processing) {
+	$wadf->deployScheduledJobs();
+	$wadf->restartWebserver();
+	$wadf->cleanupFiles();
+}
wadf-reprocess-bug315.patch (529 bytes)   

Activities

timj

12 Jan 2010 21:01

manager   ~316

Fixed in SVN r2020

Issue History

Date Modified Username Field Change
18 Dec 2009 11:28 mrosenquist New Issue
18 Dec 2009 12:18 mrosenquist File Added: WADF.php-bug315.patch
18 Dec 2009 12:18 mrosenquist File Added: wadf-reprocess-bug315.patch
18 Dec 2009 17:28 mrosenquist File Added: wadf-reprocess-bug315.patch.fixed
12 Jan 2010 20:42 timj Assigned To => timj
12 Jan 2010 20:42 timj Severity minor => feature
12 Jan 2010 20:42 timj Reproducibility have not tried => N/A
12 Jan 2010 20:42 timj Status new => assigned
12 Jan 2010 20:42 timj Target Version => 0.13.3
12 Jan 2010 21:01 timj Note Added: 316
12 Jan 2010 21:01 timj Status assigned => resolved
12 Jan 2010 21:01 timj Fixed in Version => 0.13.3
12 Jan 2010 21:01 timj Resolution open => fixed
24 Jan 2010 21:56 timj Status resolved => closed