From: Andy Bavier Date: Mon, 28 Nov 2011 22:33:56 +0000 (-0500) Subject: Fix hardcoded values X-Git-Tag: vsys-scripts-0.95-34~1^2 X-Git-Url: http://git.onelab.eu/?p=vsys-scripts.git;a=commitdiff_plain;h=cd27a35fd37ab45fa32d7d78701a5af0979d5046 Fix hardcoded values --- diff --git a/exec/connectswitch b/exec/connectswitch index fb15ee3..b61e186 100755 --- a/exec/connectswitch +++ b/exec/connectswitch @@ -21,7 +21,9 @@ arglines = map(string.strip, sys.stdin.readlines()) if len(arglines) != 1: sys.exit(1) of_server = arglines[0] -if re.match(r'^(tcp|udp):[\d\.]+$', vif) is None: exit(1) +if re.match(r'^(tcp|udp):[\d\.]+$', of_server) is None: + print "Address '%s' is invalid; should look like 'tcp:10.0.5.6'" % of_server + exit(1) print "Requesting creation of data path %s."%dpname -os.system("ovs-openflowd dp0 tcp:192.168.1.2") +os.system("ovs-openflowd %s %s" % (dpname, of_server))