Rerun start up scripts after re-enable.
[nodemanager.git] / sm.py
diff --git a/sm.py b/sm.py
index 62e49d1..bcf2dbf 100644 (file)
--- a/sm.py
+++ b/sm.py
@@ -15,7 +15,7 @@ import accounts
 import api
 import api_calls
 import database
-import controller 
+import controller
 import logger
 import sliver_vs
 import string,re
@@ -34,10 +34,10 @@ DEFAULT_ALLOCATION = {
     'net_i2_min_rate': bwmin / 1000, # kbps
     'net_i2_max_rate': bwmax / 1000, # kbps
     'net_i2_share': 1, # proportional share
-    'net_max_kbyte' : 5662310, #Kbyte
-    'net_thresh_kbyte': 4529848, #Kbyte
-    'net_i2_max_kbyte': 17196646,
-    'net_i2_thresh_kbyte': 13757316,
+    'net_max_kbyte' : 10546875, #Kbyte
+    'net_thresh_kbyte': 9492187, #Kbyte
+    'net_i2_max_kbyte': 31640625,
+    'net_i2_thresh_kbyte': 28476562,
     # disk space limit
     'disk_max': 5000000, # bytes
     # capabilities
@@ -100,7 +100,7 @@ def GetSlivers(data, fullupdate=True):
         ## 'Type' isn't returned by GetSlivers() for whatever reason.  We're overloading
         ## instantiation here, but i suppose its the ssame thing when you think about it. -FA
         # Handle nm controller here
-        if rec['instantiation'].lower() == 'nm-controller': 
+        if rec['instantiation'].lower() == 'nm-controller':
             rec.setdefault('type', attr_dict.get('type', 'controller.Controller'))
         else:
             rec.setdefault('type', attr_dict.get('type', 'sliver.VServer'))