From fed255939eea56264c0412e198ed25738123bcb8 Mon Sep 17 00:00:00 2001 From: Zoey Date: Fri, 29 Sep 2023 14:44:10 +0200 Subject: [PATCH] Add -W Signed-off-by: Zoey --- start.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/start.sh b/start.sh index 6228057..f073580 100755 --- a/start.sh +++ b/start.sh @@ -2,7 +2,7 @@ openssl req -nodes -new -x509 -subj '/CN=*' -sha256 -keyout /etc/privkey.pem -out /etc/fullchain.pem -days 365000 > /dev/null 2>&1 cat /etc/fullchain.pem /etc/privkey.pem | tee /etc/cert.pem > /dev/null 2>&1 if [ "$NOPOST" = "1" ]; then -haproxy -f /etc/haproxy/haproxy-no-post.cfg -db +haproxy -f /etc/haproxy/haproxy-no-post.cfg -W -db else -haproxy -f /etc/haproxy/haproxy.cfg -db +haproxy -f /etc/haproxy/haproxy.cfg -W -db fi