From 2f46aee345b39da2d310c00752a7f5668b8fd934 Mon Sep 17 00:00:00 2001 From: Slawek Kaplonski Date: Mon, 20 Jan 2020 21:18:46 +0100 Subject: [PATCH] Remove python 3.5 from L3 rootwrap filters In L3 agent's rootwrap filters there are KillFilters to allow killing of python processes (used to kill neutron-keepalived-state-change-monitor script). There was also filter for python3.5 but now Neutron supports python3.6 and newer so python3.5 isn't needed there anymore and this patch removes it from there. Change-Id: I57fcc6b1c506dce9113b56ffee7d29a96fa7f251 --- etc/neutron/rootwrap.d/l3.filters | 1 - 1 file changed, 1 deletion(-) diff --git a/etc/neutron/rootwrap.d/l3.filters b/etc/neutron/rootwrap.d/l3.filters index 0ae2084111c..c11fd1441b8 100644 --- a/etc/neutron/rootwrap.d/l3.filters +++ b/etc/neutron/rootwrap.d/l3.filters @@ -66,7 +66,6 @@ keepalived_state_change: CommandFilter, neutron-keepalived-state-change, root # mechanism to kill using the name of the script being executed by Python kill_keepalived_monitor_py: KillFilter, root, python, -15, -9 kill_keepalived_monitor_py3: KillFilter, root, python3, -15, -9 -kill_keepalived_monitor_py35: KillFilter, root, python3.5, -15, -9 kill_keepalived_monitor_py36: KillFilter, root, python3.6, -15, -9 kill_keepalived_monitor_py37: KillFilter, root, python3.7, -15, -9 # For e.g. RHEL8 neutron-keepalived-state-change is run by "system python"