broken configstate causes hosts not to power on when they should
vlan manager needs to actually return allocated vlans
Signed-off-by: Sawyer Bergeron <sbergeron@iol.unh.edu>
Change-Id: I1060a6599fb44bd2ca239d35fbf7e69d13f499a6
         if len(allocated) != count:
             raise ResourceAvailabilityException("can't allocate the vlans requested")
 
+        return allocated
+
     def get_public_vlan(self):
         """Return reference to an available public network without reserving it."""
         return PublicNetwork.objects.filter(lab=self.lab_set.first(), in_use=False).first()
 
 
 
 class TaskConfig(models.Model):
-    state = models.IntegerField(default=ConfigState.CLEAN)
+    state = models.IntegerField(default=ConfigState.NEW)
 
     keys = set()  # TODO: This needs to be an instance variable, not a class variable
     delta_keys_list = models.CharField(max_length=200, default="[]")