diff options
author | Soren Hansen <soren@linux2go.dk> | 2011-03-10 15:47:09 +0100 |
---|---|---|
committer | Soren Hansen <soren@linux2go.dk> | 2011-03-10 15:47:09 +0100 |
commit | b64cf7352a24d8ced69aa408f7ceadd9da71da14 (patch) | |
tree | b35c31b13674ae4bbd86bc5513a44d2a2a5614f2 | |
parent | 3b1f1aefdf23873d79be030950150b80f9e41b9a (diff) | |
download | nova-b64cf7352a24d8ced69aa408f7ceadd9da71da14.tar.gz nova-b64cf7352a24d8ced69aa408f7ceadd9da71da14.tar.xz nova-b64cf7352a24d8ced69aa408f7ceadd9da71da14.zip |
One more thing..
-rw-r--r-- | nova/network/linux_net.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/network/linux_net.py b/nova/network/linux_net.py index e64c052f9..c0bd76adf 100644 --- a/nova/network/linux_net.py +++ b/nova/network/linux_net.py @@ -216,7 +216,7 @@ def ensure_bridge(bridge, interface, net_attrs=None): _execute('sudo', 'brctl', 'setfd', bridge, 0) # _execute("sudo brctl setageing %s 10" % bridge) _execute('sudo', 'brctl', 'stp', bridge, 'off') - _execute('sudo', 'ip', 'link', 'set', bridge, up) + _execute('sudo', 'ip', 'link', 'set', bridge, 'up') if net_attrs: # NOTE(vish): The ip for dnsmasq has to be the first address on the # bridge for it to respond to reqests properly |