2
0
mirror of https://github.com/openvswitch/ovs synced 2025-10-19 14:37:21 +00:00

xenserver: Prepend XenServer external ids with "xs-"

Signed-off-by: Justin Pettit <jpettit@nicira.com>
This commit is contained in:
Justin Pettit
2010-08-09 15:07:32 -07:00
parent bfe62d7a60
commit c76fde78c5
8 changed files with 23 additions and 23 deletions

View File

@@ -345,9 +345,9 @@ def set_br_external_ids(pif):
xs_network_uuids += [nwrec['uuid']]
vsctl_argv = []
vsctl_argv += ['# configure network-uuids']
vsctl_argv += ['# configure xs-network-uuids']
vsctl_argv += ['--', 'br-set-external-id', pif_bridge_name(pif),
'network-uuids', ';'.join(xs_network_uuids)]
'xs-network-uuids', ';'.join(xs_network_uuids)]
return vsctl_argv