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
This commit is contained in:
Slawek Kaplonski 2020-01-20 21:18:46 +01:00
parent d6fccd247f
commit 2f46aee345
1 changed files with 0 additions and 1 deletions

View File

@ -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"