From: Daniel Hokka Zakrisson Date: Tue, 31 Jul 2007 14:30:36 +0000 (+0000) Subject: Assign 0.0.0.0 by default X-Git-Tag: NodeManager-1.6-1~70 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=52433f91e71eefac5a36baefaf1ea395a7cb0905;p=nodemanager.git Assign 0.0.0.0 by default --- diff --git a/sm.py b/sm.py index 3acce63..df79c52 100644 --- a/sm.py +++ b/sm.py @@ -7,7 +7,7 @@ also to make inter-sliver resource loans. The sliver manager is also responsible for handling delegation accounts. """ -# $Id: sm.py,v 1.27 2007/07/24 15:59:04 dhozac Exp $ +# $Id: sm.py,v 1.28 2007/07/27 18:02:36 dhozac Exp $ try: from bwlimit import bwmin, bwmax except ImportError: bwmin, bwmax = 8, 1000*1000*1000 @@ -41,8 +41,8 @@ DEFAULT_ALLOCATION = { 'disk_max': 5000000, # bytes # capabilities 'capabilities': '', - # IP-addresses' - 'ip_addresses': '', + # IP addresses + 'ip_addresses': '0.0.0.0', # NOTE: this table is further populated with resource names and # default amounts via the start() function below. This probably