summaryrefslogtreecommitdiffstats
path: root/testing/haproxy/haproxy.pre-upgrade
blob: 33e0164aff5994cb6335bc73302b9840b793813a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/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