X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mx.tedomum.net (mx.tedomum.net [62.210.7.149]) by lists.alpinelinux.org (Postfix) with ESMTP id DB2285C40B7 for ; Sun, 29 May 2016 10:49:41 +0000 (GMT) Received: from edel.localdomain (155.51.11.109.rev.sfr.net [109.11.51.155]) by mx.tedomum.net (Postfix) with ESMTPSA id D935711FC3; Sun, 29 May 2016 10:49:39 +0000 (UTC) From: Pierre Jaury To: alpine-aports@lists.alpinelinux.org Cc: Pierre Jaury Subject: [alpine-aports] [PATCH] Explicitely specify the group when creating the dovecot users Date: Sun, 29 May 2016 12:44:15 +0200 Message-Id: <20160529104415.19189-1-pierre@jaury.eu> X-Mailer: git-send-email 2.8.3 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- main/dovecot/dovecot.pre-install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/dovecot/dovecot.pre-install b/main/dovecot/dovecot.pre-install index e3ee636..213a6a6 100644 --- a/main/dovecot/dovecot.pre-install +++ b/main/dovecot/dovecot.pre-install @@ -2,7 +2,7 @@ addgroup -S dovecot 2>/dev/null addgroup -S dovenull 2>/dev/null -adduser -S -u 90 -D -H -h /dev/null -s /sbin/nologin -g dovecot dovecot 2>/dev/null -adduser -S -u 91 -D -H -h /dev/null -s /sbin/nologin -g dovenull dovenull 2>/dev/null +adduser -S -u 90 -D -H -h /dev/null -s /sbin/nologin -G dovecot -g dovecot dovecot 2>/dev/null +adduser -S -u 91 -D -H -h /dev/null -s /sbin/nologin -G dovenull -g dovenull dovenull 2>/dev/null exit 0 -- 2.8.3 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---