From 2c11e6d91216a1f40e9a499ee37868c81fc34f35 Mon Sep 17 00:00:00 2001 From: Ethan Jackson Date: Wed, 28 Sep 2011 12:12:56 -0700 Subject: [PATCH] ovs-xapi-sync: Crashes if root-prefix is unspecified. --- xenserver/usr_share_openvswitch_scripts_ovs-xapi-sync | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xenserver/usr_share_openvswitch_scripts_ovs-xapi-sync b/xenserver/usr_share_openvswitch_scripts_ovs-xapi-sync index 2f290892a..85795e0e6 100755 --- a/xenserver/usr_share_openvswitch_scripts_ovs-xapi-sync +++ b/xenserver/usr_share_openvswitch_scripts_ovs-xapi-sync @@ -236,7 +236,8 @@ def main(): ovs.daemon.handle_args(args) global root_prefix - root_prefix = args.root_prefix + if args.root_prefix: + root_prefix = args.root_prefix remote = args.database schema_file = "%s/vswitch.ovsschema" % ovs.dirs.PKGDATADIR -- 2.43.0