From c4f8424e0e18bf2c0be4d0800cc343b9d91ea897 Mon Sep 17 00:00:00 2001 From: Ethan Jackson Date: Wed, 5 Oct 2011 18:07:04 -0700 Subject: [PATCH] debian: ovs-monitor-ipsec requires root_prefix option. Before this patch, if the root_prefix option is left unset ovs-monitor-ipsec will crash. --- debian/ovs-monitor-ipsec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/ovs-monitor-ipsec b/debian/ovs-monitor-ipsec index 444b2341..f7bdf1da 100755 --- a/debian/ovs-monitor-ipsec +++ b/debian/ovs-monitor-ipsec @@ -436,7 +436,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.30.2