From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 131048 invoked by alias); 13 Jun 2018 13:49:12 -0000 Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner@cygwin.com Mail-Followup-To: cygwin@cygwin.com Received: (qmail 130898 invoked by uid 89); 13 Jun 2018 13:49:06 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-10.8 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.2 spammy=dcs, Hx-languages-length:989, 0900, H*F:D*ne.jp X-HELO: conssluserg-04.nifty.com Received: from conssluserg-04.nifty.com (HELO conssluserg-04.nifty.com) (210.131.2.83) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 13 Jun 2018 13:49:04 +0000 Received: from Express5800-S70 (ntsitm315127.sitm.nt.ngn.ppp.infoweb.ne.jp [125.3.30.127]) (authenticated) by conssluserg-04.nifty.com with ESMTP id w5DDmvSj014201 for ; Wed, 13 Jun 2018 22:48:58 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conssluserg-04.nifty.com w5DDmvSj014201 X-Nifty-SrcIP: [125.3.30.127] Date: Wed, 13 Jun 2018 15:29:00 -0000 From: Takashi Yano To: cygwin@cygwin.com Subject: [bug: csih] Setting privileged rights to cyg_server fails on Windows 7. Message-Id: <20180613224901.d2cf679cef8eab89a834c494@nifty.ne.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2018-06/txt/msg00147.txt.bz2 Hi, I have found that iu-config of inetutils package fails to set the privileged rights to cyg_server on Windows 7 if the machine is not domain member. I looked into this problem, and found that this is the problem of csih package. In other words, csih expects environment variable LOGONSERVER is set, but it is not set on Windows 7 without domain. This issue is resoleved with following simple patch. I hope fixed version of csih will be released. --- cygwin-service-installation-helper.sh.orig 2015-10-28 18:23:35.000000000 +0900 +++ cygwin-service-installation-helper.sh 2018-06-13 22:24:30.353515600 +0900 @@ -2883,6 +2883,7 @@ then # This test succeeds on domain member machines only, not on DCs. if [ "\\\\${COMPUTERNAME,,*}" != "${LOGONSERVER,,*}" \ + -a "${LOGONSERVER}" != "" \ -a "${LOGONSERVER}" != "\\\\MicrosoftAccount" ] then # Lowercase of USERDOMAIN -- Takashi Yano -- 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