Use option names for adduser

Although long options are supported in busybox's adduser:
https://github.com/mirror/busybox/blob/4d983dcd/loginutils/adduser.c#L166
they do not show up in help menu (as of v1.33.1). Use short names to make it
easier to review.
This commit is contained in:
Kasper K 2021-06-07 14:52:12 +00:00
parent 2a48f9098e
commit 440c0993eb

View File

@ -1,4 +1,4 @@
#!/bin/sh
# creating default user required by usbmuxd
adduser --system --ingroup usb --no-create-home --gecos "usbmux daemon" usbmux 2>/dev/null
adduser -S -G usb -H -g "usbmux daemon" usbmux 2>/dev/null