disable setting route until we have consistent way to determine external ip address
[plstackapi.git] / plstackapi / core / api / subnets.py
index 44cd56f..b62a7ef 100644 (file)
@@ -41,8 +41,9 @@ def add_subnet(auth, fields):
     #driver.update_subnet(subnet.id, {'dns_nameservers': ['8.8.8.8', '8.8.4.4']})
 
     # add subnet as interface to slice's router
-    driver.add_router_interface(subnet.slice.router_id, subnet.subnet_id)     
-    add_route = 'route add -net %s dev br-ex gw 10.100.0.5' % self.cidr
+    try: driver.add_router_interface(subnet.slice.router_id, subnet.subnet_id)
+    except: pass         
+    #add_route = 'route add -net %s dev br-ex gw 10.100.0.5' % self.cidr
     commands.getstatusoutput(add_route)    
     subnet.save()
     return subnet
@@ -57,7 +58,7 @@ def delete_subnet(auth, filter={}):
         driver.delete_router_interface(subnet.slice.router_id, subnet.subnet_id)
         driver.delete_subnet(subnet.subnet_id) 
         subnet.delete()
-    del_route = 'route del -net %s' % self.cidr
+        #del_route = 'route del -net %s' % subnet.cidr
     commands.getstatusoutput(del_route)
     return 1