Index: trunk/grails-app/conf/BootStrap.groovy
===================================================================
--- trunk/grails-app/conf/BootStrap.groovy	(revision 140)
+++ trunk/grails-app/conf/BootStrap.groovy	(revision 142)
@@ -283,5 +283,6 @@
                  leadPerson:Person.get(2),
                  description:"Check specific level sensor",
-                 comment:"Has been noted as problematic, try recalibrating.")
+                 comment:"Has been noted as problematic, try recalibrating.",
+                targetStartDate:new Date())
         BootStrapSaveAndTest(taskInstance)
 
@@ -294,4 +295,5 @@
                 description:"Some follow-up work",
                 comment:"Some help required",
+                targetStartDate:new Date()+1,
                 parentTask: Task.get(1))
         BootStrapSaveAndTest(taskInstance)
@@ -305,4 +307,5 @@
                 description:"A Sub Task can be created by setting the Parent Task value",
                 comment:"Some help required",
+                targetStartDate:new Date()-1,
                 parentTask: Task.get(1))
         BootStrapSaveAndTest(taskInstance)
@@ -316,4 +319,5 @@
                  description:"Replace sensor at next opportunity.",
                  comment:"Nothing else has worked.",
+                targetStartDate:new Date()+7,
                 parentTask: Task.get(1))
         BootStrapSaveAndTest(taskInstance)
@@ -326,5 +330,6 @@
                  leadPerson:Person.get(6),
                  description:"Production Report",
-                 comment:"Production report for specific production run or shift")
+                 comment:"Production report for specific production run or shift",
+                targetStartDate:new Date()-7)
         BootStrapSaveAndTest(taskInstance)
 
@@ -336,5 +341,6 @@
                  leadPerson:Person.get(1),
                  description:"Make killer CMMS app",
-                 comment:"Use Grails and get a move on!")
+                 comment:"Use Grails and get a move on!",
+                targetStartDate:new Date()-6)
         BootStrapSaveAndTest(taskInstance)
 
