diff options
author | Przemyslaw Pawelczyk <przemoc@zoho.com> | 2016-04-23 13:13:38 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2016-04-25 06:54:18 +0000 |
commit | a593d306c92f8bc15a1797c0a2ccfa784edbc4a0 (patch) | |
tree | e4ea45498386fd0c74f7a6a10422836df56932af /main/darkhttpd/darkhttpd.pre-install | |
parent | ccc056dbf9d3fdeef2a8e8abc00f9d2cddc5348e (diff) | |
download | aports-a593d306c92f8bc15a1797c0a2ccfa784edbc4a0.tar.bz2 aports-a593d306c92f8bc15a1797c0a2ccfa784edbc4a0.tar.xz |
Add -g option (GECOS/comment) to adduser in scripts.
This way we can avoid ugly default:
Linux user,,,
Diffstat (limited to 'main/darkhttpd/darkhttpd.pre-install')
-rw-r--r-- | main/darkhttpd/darkhttpd.pre-install | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/darkhttpd/darkhttpd.pre-install b/main/darkhttpd/darkhttpd.pre-install index 80cfa6b94b..b189233ae1 100644 --- a/main/darkhttpd/darkhttpd.pre-install +++ b/main/darkhttpd/darkhttpd.pre-install @@ -1,8 +1,8 @@ #!/bin/sh addgroup -S -g 82 www-data 2>/dev/null -adduser -S -H -h /var/www/localhost/htdocs -s /sbin/nologin -D darkhttpd \ - 2>/dev/null +adduser -S -H -h /var/www/localhost/htdocs -s /sbin/nologin -D -g darkhttpd \ + darkhttpd 2>/dev/null addgroup darkhttpd www-data 2>/dev/null exit 0 |