X-Original-To: alpine-aports@lists.alpinelinux.org Received: from sender153-mail.zoho.com (sender153-mail.zoho.com [74.201.84.153]) by lists.alpinelinux.org (Postfix) with ESMTP id DEE1D5C4477 for ; Mon, 6 Jun 2016 00:05:33 +0000 (GMT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=zapps768; d=zoho.com; h=from:to:subject:date:message-id:in-reply-to:references; b=kBq3MCwsSbaTWgc/gR7eWZZYmE3YueUY4VGpxhwRxpLtz2dZx9+w3APu9pc6i11XTPyVEbTzyjtt xgVJ5vBZXfKMF6r6bV970DS8qFT/QP8WSarIjiLvFDijkGYBwa5B Received: from localhost (89-74-38-183.dynamic.chello.pl [89.74.38.183]) by mx.zohomail.com with SMTPS id 1465171531982138.1607407050942; Sun, 5 Jun 2016 17:05:31 -0700 (PDT) From: Przemyslaw Pawelczyk To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH 01/15] testing/at: Properly set primary group in .pre-install. Date: Mon, 6 Jun 2016 02:05:01 +0200 Message-Id: <1465171515-6581-2-git-send-email-przemoc@zoho.com> X-Mailer: git-send-email 2.6.6 In-Reply-To: <1465171515-6581-1-git-send-email-przemoc@zoho.com> References: <1465171515-6581-1-git-send-email-przemoc@zoho.com> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: Fixes the problem I unintentionally brought in commit ccc056dbf9d3: system user creation doesn't add same named group and uses nogroup as primary group unless explicitly specified via -G. --- testing/at/at.pre-install | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/testing/at/at.pre-install b/testing/at/at.pre-install index 3803510..78aa4bc 100644 --- a/testing/at/at.pre-install +++ b/testing/at/at.pre-install @@ -1,7 +1,6 @@ #!/bin/sh addgroup -S at 2>/dev/null -adduser -S -D -H -s /bin/false -g at at 2>/dev/null -addgroup at at 2>/dev/null +adduser -S -D -H -s /bin/false -G at -g at at 2>/dev/null exit 0 -- 2.6.6 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---