diff options
author | Przemyslaw Pawelczyk <przemoc@zoho.com> | 2016-04-23 13:13:36 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2016-04-25 06:51:49 +0000 |
commit | 2a573734b692ce27e4809e47e514ca0dfffaa970 (patch) | |
tree | 30f53a12d9be57166a8205fcfa0f7651641fe07a /testing/elasticsearch/elasticsearch.pre-install | |
parent | 694ace841f5e455f9a44087a3657594937ae23ad (diff) | |
download | aports-2a573734b692ce27e4809e47e514ca0dfffaa970.tar.bz2 aports-2a573734b692ce27e4809e47e514ca0dfffaa970.tar.xz |
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 'testing/elasticsearch/elasticsearch.pre-install')
-rw-r--r-- | testing/elasticsearch/elasticsearch.pre-install | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/elasticsearch/elasticsearch.pre-install b/testing/elasticsearch/elasticsearch.pre-install index 042588e5b7..9e96765bda 100644 --- a/testing/elasticsearch/elasticsearch.pre-install +++ b/testing/elasticsearch/elasticsearch.pre-install @@ -1,7 +1,7 @@ #!/bin/sh addgroup elastico -adduser -h /var/lib/elasticsearch -s /sbin/nologin -G elastico \ - -g "added by apk for elasticsearch" -SDH elastico +adduser -S -h /var/lib/elasticsearch -s /sbin/nologin -G elastico \ + -g "added by apk for elasticsearch" -DH elastico exit 0 |