mirror of
				https://gitlab.alpinelinux.org/alpine/aports.git
				synced 2025-11-04 02:11:39 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			299 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			13 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
 | 
						|
 |