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 /main/nsd | |
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 'main/nsd')
-rw-r--r-- | main/nsd/nsd.pre-install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/nsd/nsd.pre-install b/main/nsd/nsd.pre-install index 80edbd154f..7f92eca5f7 100644 --- a/main/nsd/nsd.pre-install +++ b/main/nsd/nsd.pre-install @@ -1,4 +1,4 @@ #!/bin/sh addgroup -S nsd 2>/dev/null -adduser -G nsd -S -H -h /var/db/nsd -s /sbin/nologin nsd 2>/dev/null +adduser -S -G nsd -H -h /var/db/nsd -s /sbin/nologin nsd 2>/dev/null exit 0 |