aboutsummaryrefslogtreecommitdiffstats
path: root/testing/h2o/h2o.pre-install
diff options
context:
space:
mode:
authorPrzemyslaw Pawelczyk <przemoc@zoho.com>2016-04-23 13:13:35 +0200
committerNatanael Copa <ncopa@alpinelinux.org>2016-04-25 06:51:49 +0000
commit694ace841f5e455f9a44087a3657594937ae23ad (patch)
treef6776037f12e957ce0b9dd2a78815528e0d26d7a /testing/h2o/h2o.pre-install
parenta49cde0fde894f012aea0fb2a420412e27ca5533 (diff)
downloadaports-694ace841f5e455f9a44087a3657594937ae23ad.tar.bz2
aports-694ace841f5e455f9a44087a3657594937ae23ad.tar.xz
Reorder options passed to addgroup in scripts: make -S first.
It's only for consistency and to ease spotting lack of it.
Diffstat (limited to 'testing/h2o/h2o.pre-install')
-rw-r--r--testing/h2o/h2o.pre-install2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/h2o/h2o.pre-install b/testing/h2o/h2o.pre-install
index 7fc8104e18..12a76a026b 100644
--- a/testing/h2o/h2o.pre-install
+++ b/testing/h2o/h2o.pre-install
@@ -1,7 +1,7 @@
#!/bin/sh
adduser -s /sbin/nologin -h /var/www -D -S -H h2o 2>/dev/null
-addgroup -g 82 -S www-data 2>/dev/null
+addgroup -S -g 82 www-data 2>/dev/null
addgroup h2o www-data 2>/dev/null
exit 0