You are viewing a plain text version of this content. The canonical link for it is here.
Posted to tashi-commits@incubator.apache.org by rg...@apache.org on 2011/07/24 22:54:06 UTC

svn commit: r1150511 - /incubator/tashi/branches/zoni-dev/trunk/src/zoni/bootstrap/pxe.py

Author: rgass
Date: Sun Jul 24 22:54:05 2011
New Revision: 1150511

URL: http://svn.apache.org/viewvc?rev=1150511&view=rev
Log:
removing vlan_reserved until it is actually used

Modified:
    incubator/tashi/branches/zoni-dev/trunk/src/zoni/bootstrap/pxe.py

Modified: incubator/tashi/branches/zoni-dev/trunk/src/zoni/bootstrap/pxe.py
URL: http://svn.apache.org/viewvc/incubator/tashi/branches/zoni-dev/trunk/src/zoni/bootstrap/pxe.py?rev=1150511&r1=1150510&r2=1150511&view=diff
==============================================================================
--- incubator/tashi/branches/zoni-dev/trunk/src/zoni/bootstrap/pxe.py (original)
+++ incubator/tashi/branches/zoni-dev/trunk/src/zoni/bootstrap/pxe.py Sun Jul 24 22:54:05 2011
@@ -51,8 +51,8 @@ class Pxe(BootStrapInterface):
 
 		self.port = config['dbPort']
 
-		self.vlan_max = config['vlan_max']
-		self.vlan_reserved = config['vlan_reserved']
+		self.vlan_max = config['vlanMax']
+		#self.vlan_reserved = config['vlanReserved']
 		
 		#  Connect to DB
 		self.conn = MySQLdb.connect(host = self.host, port = self.port, user = self.user, passwd = self.passwd, db = self.db)