ovs-vsctl: Fix traceback when telling target to reload
authorJustin Pettit <jpettit@nicira.com>
Fri, 4 Dec 2009 22:11:53 +0000 (14:11 -0800)
committerJustin Pettit <jpettit@nicira.com>
Fri, 4 Dec 2009 22:11:53 +0000 (14:11 -0800)
The code to tell the target to reload was referencing a non-existent
global variable to determine the target.  This change uses the correct
one.

utilities/ovs-vsctl.in

index bef868c..06dbabb 100755 (executable)
@@ -158,7 +158,7 @@ def do_cfg_save(cfg, file):
             file.write("%s=%s\n" % (key, value))
 
 def cfg_reload():
-    target = VSWITCHD_TARGET
+    target = vswitchd_target
     if not target.startswith('/'):
         pid = read_first_line_of_file('%s/%s.pid' % ('@RUNDIR@', target))
         target = '%s/%s.%s.ctl' % ('@RUNDIR@', target, pid)