From cd27a35fd37ab45fa32d7d78701a5af0979d5046 Mon Sep 17 00:00:00 2001 From: Andy Bavier Date: Mon, 28 Nov 2011 17:33:56 -0500 Subject: [PATCH] Fix hardcoded values --- exec/connectswitch | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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)) -- 2.43.0