X-Original-To: alpine-devel@mail.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id 55C1BDC17F7 for ; Wed, 7 Oct 2015 01:48:03 +0000 (UTC) Received: from hydrogenium.shiz.me (hydrogenium.shiz.me [62.210.12.63]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id C2F5FDC0E56 for ; Wed, 7 Oct 2015 01:48:02 +0000 (UTC) Received: from localhost (::ffff:83.84.34.140 [IPv6:::ffff:83.84.34.140]) by hydrogenium.shiz.me (OpenSMTPD) with ESMTPSA id 9c0fa80d TLS protoversion=TLSv1.2 ciphersuite=ECDHE-RSA-AES256-GCM-SHA384 verify=NO for ; Wed, 7 Oct 2015 01:47:59 +0000 (UTC) From: Shiz To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] [PATCH] testing/thttpd: create group Date: Wed, 7 Oct 2015 03:47:29 +0200 Message-Id: <1444182449-77506-1-git-send-email-hi@shiz.me> X-Mailer: git-send-email 2.6.0 X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: 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. --- testing/thttpd/thttpd.pre-install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/thttpd/thttpd.pre-install b/testing/thttpd/thttpd.pre-install index 1094a4b..f740838 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 -- 2.6.0 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---