mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-21 06:36:45 +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
5 lines
86 B
Bash
5 lines
86 B
Bash
#!/bin/sh
|
|
|
|
adduser -S -D -H -s /sbin/nologin -g arpwatch arpwatch 2>/dev/null
|
|
|
|
exit 0
|