aboutsummaryrefslogtreecommitdiffstats
path: root/testing/thttpd
diff options
context:
space:
mode:
authorShiz <hi@shiz.me>2015-10-07 03:47:29 +0200
committerNatanael Copa <ncopa@alpinelinux.org>2015-10-20 08:16:57 +0000
commit15c146fc2af4e9537c4e88e767517a8fec9f3766 (patch)
treec018f8fe913a25a4bd2bd3595945a0db0f567517 /testing/thttpd
parent8721663b6e20afec6f33519f905b8c0c6715c641 (diff)
downloadaports-15c146fc2af4e9537c4e88e767517a8fec9f3766.tar.bz2
aports-15c146fc2af4e9537c4e88e767517a8fec9f3766.tar.xz
testing/thttpd: create group
The pre-install script assumed the thttpd group already exists, but it doesn't and thus adduser -G thttpd will fail, leading to a cascading failure in the pre-install script.
Diffstat (limited to 'testing/thttpd')
-rw-r--r--testing/thttpd/thttpd.pre-install2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/thttpd/thttpd.pre-install b/testing/thttpd/thttpd.pre-install
index 1094a4b69c..f74083866b 100644
--- a/testing/thttpd/thttpd.pre-install
+++ b/testing/thttpd/thttpd.pre-install
@@ -1,6 +1,6 @@
#!/bin/sh
addgroup -g 82 -S www-data 2>/dev/null
-adduser -S -G thttpd -H -h /var/www/localhost/htdocs -s /sbin/nologin \
+adduser -S -H -h /var/www/localhost/htdocs -s /sbin/nologin \
-D thttpd 2>/dev/null
addgroup thttpd www-data 2>/dev/null