mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-08 01:44:40 +02:00
7 lines
150 B
Bash
Executable file
7 lines
150 B
Bash
Executable file
#!/bin/sh
|
|
|
|
addgroup -S haproxy 2>/dev/null
|
|
adduser -S -D -H -h /var/lib/haproxy -s /sbin/nologin \
|
|
-G haproxy -g haproxy haproxy 2>/dev/null
|
|
|
|
exit 0
|