10 lines
200 B
Bash
Raw Normal View History

#!/bin/sh
2023-07-26 00:01:12 +02:00
PEER_0_NAME=${PEER_0_NAME:-peer-0}
PEER_1_NAME=${PEER_1_NAME:-peer-1}
PEER_2_NAME=${PEER_2_NAME:-peer-2}
envsubst < /etc/haproxy/haproxy.template.cfg > /etc/haproxy/haproxy.cfg
exec "$@"