500dc73c87
This changes the keepalived extend_start.sh script not to recreate the /dev/log symlink if it already exists. This change is related to a comment from SamYaple in https://review.openstack.org/#/c/288432/. TrivialFix Change-Id: I9ca2b4d0b36c961ab3e1e18e2011dd10b47c33e3
16 lines
404 B
Bash
16 lines
404 B
Bash
#!/bin/bash
|
|
|
|
# NOTE(elemoine): keepalived cannot be configured to change the log address to
|
|
# anything other than /dev/log. Heka's log socket is at /var/lib/kolla/heka/log
|
|
# so we symlink /dev/log to that location.
|
|
if [[ ! -h /dev/log ]]; then
|
|
ln -sf /var/lib/kolla/heka/log /dev/log
|
|
fi
|
|
|
|
modprobe ip_vs
|
|
|
|
# Workaround for bug #1485079
|
|
if [ -f /run/keepalived.pid ]; then
|
|
rm /run/keepalived.pid
|
|
fi
|