aboutsummaryrefslogtreecommitdiffstats
path: root/community/smstools
diff options
context:
space:
mode:
authorPrzemyslaw Pawelczyk <przemoc@zoho.com>2016-04-23 13:13:36 +0200
committerNatanael Copa <ncopa@alpinelinux.org>2016-04-25 06:51:49 +0000
commit2a573734b692ce27e4809e47e514ca0dfffaa970 (patch)
tree30f53a12d9be57166a8205fcfa0f7651641fe07a /community/smstools
parent694ace841f5e455f9a44087a3657594937ae23ad (diff)
Reorder options passed to adduser in scripts: make -S first.
It's only for consistency and to ease spotting lack of it.
Diffstat (limited to 'community/smstools')
-rwxr-xr-xcommunity/smstools/smstools.pre-install2
1 files changed, 1 insertions, 1 deletions
diff --git a/community/smstools/smstools.pre-install b/community/smstools/smstools.pre-install
index dc250442df5..638266c7394 100755
--- a/community/smstools/smstools.pre-install
+++ b/community/smstools/smstools.pre-install
@@ -1,5 +1,5 @@
#!/bin/sh
addgroup -S smsd &>/dev/null
-adduser -h /var/spool/sms -s /sbin/nologin -G smsd -S -D smsd &>/dev/null
+adduser -S -h /var/spool/sms -s /sbin/nologin -G smsd -D smsd &>/dev/null
adduser -G uucp smsd &>/dev/null
exit 0