X-Recipient: archive-cygwin AT delorie DOT com DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:message-id:date:from:mime-version:to:subject :references:in-reply-to:content-type; q=dns; s=default; b=Eqo+q4 TyopGb81JwNJ/anv7TdffMqXJJj4aeJp+7MSo0eclKzSZ28V21IhbswgHwX4GokN ZtgdV2t9+ga5LgYZC+foaQV5GCe28xMO+QCGXHUSkHuLxxBbKddvKcy7kBBNwlNs y0bk/v7be2xorsd+0H9blEEis+5iWF++fiD3A= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:message-id:date:from:mime-version:to:subject :references:in-reply-to:content-type; s=default; bh=/F7zGKk3Krw/ 5t0lduC4v+pSTfo=; b=C6oGGIE2TPYF2BtNhoYbcah5c23j6IM5pdxFdo0NGW1p 6+hL7HaDyrxOtaH5dBuTEaohVtWLhQRty5jaqRA1ItmEUtXzNyKAh/dW94HqhEBf dRy6OUfV1sMI4A4luPNjiONurWeLHCuEmg959X6oRuGHJ67mEqAwInBriDrETP8= Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mailout07.t-online.de Message-ID: <5488CA7B.9020708@t-online.de> Date: Wed, 10 Dec 2014 23:34:35 +0100 From: Christian Franke User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:34.0) Gecko/20100101 Firefox/34.0 SeaMonkey/2.31 MIME-Version: 1.0 To: cygwin AT cygwin DOT com Subject: Re: [ANNOUNCEMENT] Updated: csih-0.9.8-1 References: In-Reply-To: Content-Type: multipart/mixed; boundary="------------010208090604000301040701" X-IsSubscribed: yes --------------010208090604000301040701 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Corinna Vinschen wrote: > I just updated the csih service installation helper package to 0.9.8. The patch for csih_create_local_group() from http://cygwin.com/ml/cygwin-apps/2014-11/msg00128.html was not fully applied. mkgroup is still called with bogus option -u. Next try attached :-) Christian --------------010208090604000301040701 Content-Type: text/x-patch; name="csih_create_local_group-2.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="csih_create_local_group-2.patch" --- cygwin-service-installation-helper.sh.orig 2014-12-10 20:59:33.000000000 +0100 +++ cygwin-service-installation-helper.sh 2014-12-10 23:25:20.079816400 +0100 @@ -3133,7 +3133,7 @@ csih_create_local_group() # If we use /etc account DB only, write new group to /etc/group if csih_use_file_etc group then - /usr/bin/mkgroup -l -u "${group}" >> "${SYSCONFDIR}/group" + /usr/bin/mkgroup -l -g "${group}" >> "${SYSCONFDIR}/group" fi fi fi --------------010208090604000301040701 Content-Type: text/plain; charset=us-ascii -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple --------------010208090604000301040701--