Commit
823c5699 "interface-reconfigure: callout to datapath backend class
method on rewrite" changed "interface-reconfigure write" to do what
refresh-network-uuids does. We can't entirely get rid of
refresh-network-uuids, so this commit rewrites it as a trivial wrapper
around interface-reconfigure.
usr_share_openvswitch_scripts_refresh-network-uuids
- Script to refresh bridge.<bridge>.network-uuids keys, which
- can get out-of-sync following a pool join. Running this script
- is an alternative to rebooting the host.
+ Script to refresh Bridge table external-ids:network-uuids
+ values, which can get out-of-sync following a pool join.
usr_share_openvswitch_scripts_sysconfig.template
-#! /usr/bin/python
-
-import sys
-sys.path.insert(0, "/opt/xensource/libexec")
-from InterfaceReconfigure import *
-from InterfaceReconfigureVswitch import *
-
-db_init_from_xenapi(None)
-
-vsctl_argv = []
-for pif in db().get_all_pifs():
- pifrec = db().get_pif_record(pif)
- if not pif_is_vlan(pif) and pifrec['currently_attached']:
- vsctl_argv += set_br_external_ids(pif)
-
-#log("modifying configuration:")
-#for c in vsctl_argv:
-# log(" %s" % c)
-
-if vsctl_argv != []:
- datapath_modify_config(vsctl_argv)
+#! /bin/sh
+exec /opt/xensource/libexec/interface-reconfigure rewrite