From 45ef8997e81c2648c6f8f10aafe427abe7b5730a Mon Sep 17 00:00:00 2001 From: Davanum Srinivas Date: Fri, 23 Dec 2016 10:12:00 -0500 Subject: [PATCH] Remove Duplicate line in privsep.filters Only one line is picked up by configparser, so we should just have one in the default privsep.filters file. This was found when a stricter configparser kicked in for a python3.5 test. Closes-Bug: #1652157 Change-Id: Ib7d9aa0e0b74a936002e0eea0b3af05102b06a62 --- etc/neutron/rootwrap.d/privsep.filters | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/etc/neutron/rootwrap.d/privsep.filters b/etc/neutron/rootwrap.d/privsep.filters index 58e3b90908b..d9a322a5341 100644 --- a/etc/neutron/rootwrap.d/privsep.filters +++ b/etc/neutron/rootwrap.d/privsep.filters @@ -26,11 +26,6 @@ privsep: PathFilter, privsep-helper, root, --privsep_context, neutron.privileged.default, --privsep_sock_path, / -# Same as above with a second `--config-file` arg, since many neutron -# components are installed like that (eg: by devstack). Adjust to -# suit local requirements. -privsep: PathFilter, privsep-helper, root, - --config-file, /etc, - --config-file, /etc, - --privsep_context, neutron.privileged.default, - --privsep_sock_path, / +# NOTE: A second `--config-file` arg can also be added above. Since +# many neutron components are installed like that (eg: by devstack). +# Adjust to suit local requirements.