Allow to kill keepalived state change monitor process
Usually Neutron stops neutron-keepalived-state-change-monitor process gracefully with SIGTERM. But in case if this will not stop process for some time, Neutron will try to kill this process with SIGKILL (-9). That was causing problem with rootwrap as kill filters for this process allowed to send only "-15" to it. Now it is possible to kill this process with "-9" too. Change-Id: Id019fa7649bd1158f9d56e63f8dad108d0ca8c1f Closes-bug: #1860326
This commit is contained in:
parent
1d354f7577
commit
d6fccd247f
@ -64,16 +64,16 @@ keepalived_state_change: CommandFilter, neutron-keepalived-state-change, root
|
||||
# command of the process to be killed is python.
|
||||
# TODO(mlavalle) These kill filters will be updated once we come up with a
|
||||
# mechanism to kill using the name of the script being executed by Python
|
||||
kill_keepalived_monitor_py: KillFilter, root, python, -15
|
||||
kill_keepalived_monitor_py3: KillFilter, root, python3, -15
|
||||
kill_keepalived_monitor_py35: KillFilter, root, python3.5, -15
|
||||
kill_keepalived_monitor_py36: KillFilter, root, python3.6, -15
|
||||
kill_keepalived_monitor_py37: KillFilter, root, python3.7, -15
|
||||
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"
|
||||
# which is /usr/libexec/platform-python3.6 so this should be in filters also.
|
||||
# Path /usr/libexec isn't in PATH by default so it has to be given here as
|
||||
# absolute path
|
||||
kill_keepalived_monitor_platform_py: KillFilter, root, /usr/libexec/platform-python, -15
|
||||
kill_keepalived_monitor_platform_py36: KillFilter, root, /usr/libexec/platform-python3.6, -15
|
||||
kill_keepalived_monitor_platform_py: KillFilter, root, /usr/libexec/platform-python, -15, -9
|
||||
kill_keepalived_monitor_platform_py36: KillFilter, root, /usr/libexec/platform-python3.6, -15, -9
|
||||
# neutron-keepalived-state-change-monitor kill script filter
|
||||
kill_neutron-keepalived-state-change-monitor_script: CommandFilter, neutron-keepalived-state-change-monitor-kill, root
|
||||
|
Loading…
Reference in New Issue
Block a user