aboutsummaryrefslogtreecommitdiffstats
path: root/sfc
diff options
context:
space:
mode:
Diffstat (limited to 'sfc')
-rw-r--r--sfc/lib/utils.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/sfc/lib/utils.py b/sfc/lib/utils.py
index 2f98f6ff..02782765 100644
--- a/sfc/lib/utils.py
+++ b/sfc/lib/utils.py
@@ -34,6 +34,8 @@ def run_cmd(cmd):
stderr=subprocess.PIPE)
(output, errors) = pipe.communicate()
+ logger.debug("running [%s] returns: <%s> - %s "
+ "" % (cmd, pipe.returncode, output))
if output:
output = output.strip()
if pipe.returncode != 0 or len(errors) > 0:
@@ -400,8 +402,9 @@ def setup_compute_node(cidr):
ip_computes = get_openstack_node_ips("compute")
for ip_compute in ip_computes:
run_cmd_on_compute("ifconfig br-int up", ip_compute)
- if not run_cmd_on_compute("ip route|grep -o %s" % cidr, ip_compute):
+ if not run_cmd_on_compute(
+ "ip route|grep -o %s || true" % cidr, ip_compute):
logger.info("adding route %s in %s" % (cidr, ip_compute))
- run_cmd_on_compute("ip route add %s" % cidr, ip_compute)
+ run_cmd_on_compute("ip route add %s dev br-int" % cidr, ip_compute)
else:
logger.info("route %s exists" % cidr)