xenserver: Make refresh-network-uuids use "interface-reconfigure rewrite".
authorBen Pfaff <blp@nicira.com>
Fri, 4 Jun 2010 17:55:32 +0000 (10:55 -0700)
committerBen Pfaff <blp@nicira.com>
Tue, 8 Jun 2010 17:31:37 +0000 (10:31 -0700)
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.

xenserver/README
xenserver/usr_share_openvswitch_scripts_refresh-network-uuids

index 255e5e6..93be526 100644 (file)
@@ -51,9 +51,8 @@ files are:
 
     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
 
index 55a8ba8..42ebe06 100755 (executable)
@@ -1,21 +1,2 @@
-#! /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