sonic-buildimage/dockers/docker-fpm-frr/bgpd.sh

34 lines
704 B
Bash
Raw Normal View History

#!/usr/bin/env bash
addr="127.0.0.1"
port=2601
function help()
{
echo "This script aims to ensure zebra is ready to accept connections before starting bgpd"
echo "Usage: $0 [options] [bgpd options]"
echo "Options:"
echo " -a Zebra address"
echo " -o Zebra port"
exit 1
}
while getopts ":a:o:h" opt; do
case "${opt}" in
h) help
;;
a) addr=${OPTARG}
;;
o) port=${OPTARG}
;;
esac
done
shift $((OPTIND-1))
timeout 5s bash -c -- "until </dev/tcp/${addr}/${port}; do sleep 0.1;done"
if [ "$?" != "0" ]; then
logger -p error "Error: zebra is not ready to accept connections"
fi
exec /usr/lib/frr/bgpd "$@"