Add haproxy Dockerfile related files
[aai/aai-common.git] / Dockerfiles / haproxy / docker-entrypoint.sh
1 #!/bin/sh
2 set -e
3
4 # first arg is `-f` or `--some-option`
5 if [ "${1#-}" != "$1" ]; then
6     set -- haproxy "$@"
7 fi
8
9 NAMESERVER_IP=$(cat /etc/resolv.conf  | grep 'nameserver' | head -1 | awk '{ print $2; }');
10
11 sed -i 's/${ONAP_NAMESERVER_CLUSTER_IP}/'${NAMESERVER_IP}'/g' /usr/local/etc/haproxy/resolvers.conf || {
12     echo "Unable to overwrite the nameserver in the haproxy configuration file";
13     exit 1;
14 }
15
16 if [ "$1" = 'haproxy' ]; then
17     # if the user wants "haproxy", let's use "haproxy-systemd-wrapper" instead so we can have proper reloadability implemented by upstream
18     shift # "haproxy"
19     set -- "$(which haproxy-systemd-wrapper)" -p /run/haproxy.pid "$@"
20 fi
21
22 exec "$@"