mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-02 15:21:43 +01:00
8 lines
158 B
Bash
8 lines
158 B
Bash
#!/bin/sh
|
|
|
|
# Create consul group and user
|
|
addgroup -S consul 2> /dev/null
|
|
adduser -h /var/consul -s /sbin/nologin -G consul -S -D consul 2> /dev/null
|
|
exit 0
|
|
|