Merge "Do not create /dev/log symlink if it already exists"

This commit is contained in:
Jenkins 2016-03-09 15:52:32 +00:00 committed by Gerrit Code Review
commit 92033d0a53

View File

@ -3,7 +3,9 @@
# 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.
ln -sf /var/lib/kolla/heka/log /dev/log
if [[ ! -h /dev/log ]]; then
ln -sf /var/lib/kolla/heka/log /dev/log
fi
modprobe ip_vs