mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-26 04:35:39 +03:00
12 lines
299 B
Bash
12 lines
299 B
Bash
#!/bin/sh
|
|
|
|
addgroup haproxy 2>/dev/null
|
|
adduser -S -H -h /var/lib/haproxy -s /bin/false -D \
|
|
-G haproxy haproxy 2>/dev/null
|
|
|
|
# move config to new location
|
|
if [ -e /etc/haproxy.cfg ] && ! [ -e /etc/haproxy/haproxy.cfg ]; then
|
|
mkdir -p /etc/haproxy
|
|
mv /etc/haproxy.cfg /etc/haproxy/haproxy.cfg
|
|
fi
|
|
|