From 440c0993ebe6bbcf46e2f733ce3eaebc8eb1d87c Mon Sep 17 00:00:00 2001 From: Kasper K Date: Mon, 7 Jun 2021 14:52:12 +0000 Subject: [PATCH] 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. --- testing/usbmuxd/usbmuxd.post-install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/usbmuxd/usbmuxd.post-install b/testing/usbmuxd/usbmuxd.post-install index 7dda410fa22..5c2e50ee9dc 100644 --- a/testing/usbmuxd/usbmuxd.post-install +++ b/testing/usbmuxd/usbmuxd.post-install @@ -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