6d405cc9ad
The module must be loaded from the host directly in order to avoid any SELinux issues. There are examples in kolla-ansible and tripleo-heat-templates: - https://review.openstack.org/#/c/605624/ - https://review.openstack.org/#/c/605450/ Change-Id: I90a5dcb64cf9e446d9e90347c12d5558c47a7f62 Related-Bug: 1794550
7 lines
109 B
Bash
7 lines
109 B
Bash
#!/bin/bash
|
|
|
|
# Workaround for bug #1485079
|
|
if [ -f /run/keepalived.pid ]; then
|
|
rm /run/keepalived.pid
|
|
fi
|