mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-07 22:37:12 +02: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
8 lines
163 B
Bash
Executable File
8 lines
163 B
Bash
Executable File
#!/bin/sh
|
|
|
|
addgroup -S smsd 2>/dev/null
|
|
adduser -S -D -h /var/spool/sms -s /sbin/nologin -G smsd -g smsd smsd 2>/dev/null
|
|
adduser -G uucp smsd 2>/dev/null
|
|
|
|
exit 0
|