diff options
author | Przemyslaw Pawelczyk <przemoc@zoho.com> | 2016-04-23 13:13:41 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2016-04-25 06:56:47 +0000 |
commit | da4e96aacef5e9bd9a7dccecffdc92f588a6dd78 (patch) | |
tree | 6121ad4aa9d1cb1aca5c3aac0fbde35f4943b50c /testing/cluster-glue | |
parent | 8ac766921c78afe221fa463b6ec07e9e4da4d520 (diff) | |
download | aports-da4e96aacef5e9bd9a7dccecffdc92f588a6dd78.tar.bz2 aports-da4e96aacef5e9bd9a7dccecffdc92f588a6dd78.tar.xz |
Reorder arguments passed to addgroup/adduser in scripts.
Now all invocations have following order of arguments (if present):
addgroup -S -g ... GROUP
adduser -S -u ... -D -H -h ... -s ... -G ... -g ... USER
Diffstat (limited to 'testing/cluster-glue')
-rw-r--r-- | testing/cluster-glue/cluster-glue.pre-install | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/testing/cluster-glue/cluster-glue.pre-install b/testing/cluster-glue/cluster-glue.pre-install index ce20da4102..31249dba6d 100644 --- a/testing/cluster-glue/cluster-glue.pre-install +++ b/testing/cluster-glue/cluster-glue.pre-install @@ -1,10 +1,12 @@ #!/bin/sh addgroup -S haclient 2>/dev/null -adduser -S -g hacluster hacluster \ +adduser -S \ -h /var/lib/heartbeat/cores/hacluster \ - -G haclient \ -s /sbin/nologin \ + -G haclient \ + -g hacluster \ + hacluster \ 2>/dev/null exit 0 |