docker-keepalived/image/service/keepalived/finish.sh

27 lines
698 B
Bash
Raw Normal View History

2016-08-27 08:37:00 +00:00
#!/bin/bash -e
# set -x (bash debug) if log level is trace
# https://github.com/osixia/docker-light-baseimage/blob/stable/image/tool/log-helper
log-helper level eq trace && set -x
# try to delete virtual ips from interface
for vip in $(complex-bash-env iterate KEEPALIVED_VIRTUAL_IPS)
do
2017-04-02 12:25:09 +00:00
IP_INFO=$(ip addr list | grep ${!vip}) || continue
IP_V6=$(echo "${IP_INFO}" | grep "inet6")
IP_IP=$(echo "${IP_INFO}" | awk '{print $2}')
# ipv4
if [ -z "${IP_V6}" ]; then
IP_INTERFACE=$(echo "${IP_INFO}" | awk '{print $5}')
# ipv6
else
echo "skipping address: ${IP_IP} - ipv6 not supported yet :("
continue
fi
ip addr del ${IP_IP} dev ${IP_INTERFACE} || true
2016-08-27 08:37:00 +00:00
done
exit 0