mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-21 07:42:21 +01:00
Now all invocations have following order of arguments (if present):
addgroup -S -g ... GROUP
adduser -S -u ... -D -H -h ... -s ... -G ... -g ... USER
7 lines
110 B
Bash
7 lines
110 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S drizzle 2>/dev/null
|
|
adduser -S -D -H -G drizzle -g drizzle drizzle 2>/dev/null
|
|
|
|
exit 0
|