delorie.com/archives/browse.cgi   search  
Mail Archives: cygwin/2014/11/08/02:23:07

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:date:from:to:subject:message-id:references
:mime-version:content-type:in-reply-to; q=dns; s=default; b=R5DA
I+6l2SjNxks62GvtGqJdPSR1ElrvpadJXAR3aThd1SEK+amECX7dTrX5Jor/FWru
5Wj9OO0yJaMXpFI0hkEJufRnesfbe3MlTUBq/cTSJMZsOWFkY5NbuhjcbMfGgc5v
QrdskWHz5colzLIv7bGd46J8CvTG7PR1DO5YC6E=
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:date:from:to:subject:message-id:references
:mime-version:content-type:in-reply-to; s=default; bh=3ZOFJcvdCj
VS7RavkQUkGkR5yEg=; b=r7/aIH9+wEGoRVGRMaPXYVUYKuPojFDX+HGSDUbvmy
jw9tSd0iaxEHN2O0WD9ytqEnhihb2XfIK9OjNhBbWla5veK7DxgtPS+/xZ1lYd48
2cFHZUlmcsbAbVmqgf2LFLC31QjoEVG74hZlH7nlisIpM6e6ijDpdEyptlgUtCSu
4=
Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm
List-Id: <cygwin.cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe AT cygwin DOT com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin AT cygwin DOT com>
List-Help: <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs>
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.5 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.2
X-HELO: mail106.syd.optusnet.com.au
Date: Sat, 8 Nov 2014 18:22:30 +1100
From: Duncan Roe <duncan_roe AT acslink DOT net DOT au>
To: cygwin AT cygwin DOT com
Subject: Re: [ANNOUNCEMENT] TEST RELEASE: Cygwin 1.7.33-0.5
Message-ID: <20141108072230.GA3018@dimstar.local.net>
Mail-Followup-To: cygwin AT cygwin DOT com
References: <announce DOT 20141105111753 DOT GT28636 AT calimero DOT vinschen DOT de> <C9D37D92E903B347A31B9CF82643BA280730A5ED AT 046-CH1MPN1-043 DOT 046d DOT mgd DOT msft DOT net>
MIME-Version: 1.0
In-Reply-To: <C9D37D92E903B347A31B9CF82643BA280730A5ED@046-CH1MPN1-043.046d.mgd.msft.net>
User-Agent: Mutt/1.5.22 (2013-10-16)
X-Optus-CM-Score: 0
X-Optus-CM-Analysis: v=2.1 cv=fvDlOjIf c=1 sm=1 tr=0 a=+cDhJlqnNvz9E7c5l3ERGg==:117 a=+cDhJlqnNvz9E7c5l3ERGg==:17 a=y26AOypDAAAA:8 a=PO7r1zJSAAAA:8 a=M1kyBYkWWGkA:10 a=kj9zAlcOel0A:10 a=iaFubHWvAAAA:8 a=bgj4ZmEcBQ8JDbKh-roA:9 a=CjuIK1q_8ugA:10
X-IsSubscribed: yes

On Wed, Nov 05, 2014 at 06:23:54PM +0000, Habermann, David (D) wrote:
> > I just released a 5th TEST version of the next upcoming Cygwin release,
> > 1.7.33-0.5.
>
> Ever since using this 1.7.33-0.x series (currently running 1.7.33-0.5) I've
> been having intermittent trouble with one of my scripts, and just finally got
> around to digging further today.  This is an expect script (subroutine of a
> larger system) designed to auto-login to an ssh session and then set the
> passwd -R to allow further ssh sessions to have "full network powers". (I then
> run a cron script which drops these rights off again every half-hour, so the
> "full network powers" logins are time limited.)
>
> The symptoms of the failure are that it sometimes fails to send the ssh
> password (and thus doesn't proceed to the passwd -R command at all).  If I run
> the script a second time, it almost always works on the second try. After some
> time has passed I run it again and get a failure, then immediately run again
> and succeed.  I would appreciate any thoughts as to why such a script would
> fail, and then succeed on successive runs.  This routine basically never
> failed on the previous recent versions of cygwin (in active daily use since
> approximately July 1st).
> >
> > Dave
> >
> >
> > The script is called like this:
> >
> > $ super.exp localhost mypasswd
> >
> > and the file super.exp looks like this:
> >
> #!/usr/bin/expect
>
> set mach [lindex $argv 0]
> set pass [lindex $argv 1]
>
> spawn ssh -o PubkeyAuthentication=no $mach
> expect -exact "password: "
> send $pass\n
> expect {
>         "$ " {
>                 send "passwd -R\n"
>                 expect -exact "password: "
>                 send $pass\n
>                 expect -exact "password: "
>                 send $pass\n
>                 expect -exact "$ "
>                 send "exit\n"
>                 interact
>         }
>         "Permission denied, please try again." {
>                 send_error "The password you provided was invalid.\n"
>                 exit 1
>         }
> }
>
I would try "set exp_internal 1" and capture the output somewhere. There
shouldn't be too much for a script this size. You should see the exact failure
point quite easily.

Cheers ... Duncan.

--
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

- Raw text -


  webmaster     delorie software   privacy  
  Copyright © 2019   by DJ Delorie     Updated Jul 2019