From da4e96aacef5e9bd9a7dccecffdc92f588a6dd78 Mon Sep 17 00:00:00 2001 From: Przemyslaw Pawelczyk Date: Sat, 23 Apr 2016 13:13:41 +0200 Subject: 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 --- main/mini_httpd/mini_httpd.pre-install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'main/mini_httpd/mini_httpd.pre-install') diff --git a/main/mini_httpd/mini_httpd.pre-install b/main/mini_httpd/mini_httpd.pre-install index 63876f7731..c2a9d1f139 100644 --- a/main/mini_httpd/mini_httpd.pre-install +++ b/main/mini_httpd/mini_httpd.pre-install @@ -8,8 +8,8 @@ if [ -f /etc/mini_httpd.conf ] && ! [ -L /etc/mini_httpd.conf ]; then fi addgroup -S -g 82 www-data 2>/dev/null -adduser -S -H -h /var/www/localhost/htdocs -s /sbin/nologin \ - -D -g minihttpd minihttpd 2>/dev/null +adduser -S -D -H -h /var/www/localhost/htdocs -s /sbin/nologin \ + -g minihttpd minihttpd 2>/dev/null addgroup minihttpd www-data 2>/dev/null exit 0 -- cgit v1.2.3