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/consul | |
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/consul')
-rw-r--r-- | testing/consul/consul.pre-install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/consul/consul.pre-install b/testing/consul/consul.pre-install index aef4230557..6e11c5bc04 100644 --- a/testing/consul/consul.pre-install +++ b/testing/consul/consul.pre-install @@ -2,6 +2,6 @@ # Create consul group and user addgroup -S consul 2> /dev/null -adduser -h /var/consul -s /sbin/nologin -G consul -S -D consul 2> /dev/null +adduser -S -h /var/consul -s /sbin/nologin -G consul -D consul 2> /dev/null exit 0 |