Merge branch 'newmachinestate'

git-svn-id: https://svn.apache.org/repos/asf/incubator/tashi/trunk@1370063 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/tashi/clustermanager/data/fromconfig.py b/src/tashi/clustermanager/data/fromconfig.py
index 4cfad6e..298942c 100644
--- a/src/tashi/clustermanager/data/fromconfig.py
+++ b/src/tashi/clustermanager/data/fromconfig.py
@@ -208,7 +208,7 @@
 
 		# this is a new host
 		_id = self.getNewId("hosts")
-		self.hosts[_id] = Host(d={'id':_id,'name':hostname,'state':HostState.Normal,'memory':memory,'cores':cores,'version':version})
+		self.hosts[_id] = Host(d={'id':_id,'name':hostname,'state':HostState.Normal,'memory':memory,'cores':cores,'version':version, 'up':False, 'decayed':False, 'notes':'', 'reserved':[]})
 		self.save()
 		self.hostLock.release()
 		return _id, False