9 lines
192 B
Bash
Executable file
9 lines
192 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
source /scripts/haproxy-reload.sh initial
|
|
|
|
/usr/sbin/haproxy -W -f /etc/haproxy/haproxy.cfg -p /run/haproxy.pid -S /var/run/haproxy.sock
|
|
|
|
while true; do
|
|
sleep 60
|
|
done
|