To whom it may concern:
 
My script works on a older cygwin software:
expect == 5.26
ssh == OpenSSH_3.6.1p2
 
My script fails on a current cygwin software:
expect == 5.26
ssh == OpenSSH_3.8.1p1
The symptons show that expect can not recognize the
ssh output, so
I will be prompted over and over again for the
password.
 
Also note, if I ssh from the older installation to the
current 
installation,
then my script works again.  It appears the problem
lives is term 
compatibility.
 
Andy
PS.  Here is my script and example successfull
execution:
$ cat t.exp
#!/usr/local.bin/expect -f
set timeout 60
send_user "Logging into pilot 172.18.64.110\n"
if {[catch {spawn ssh [EMAIL PROTECTED] != 0} {
    send_user "PwrSlammer.exp could not telnet to
172.18.64.110\n"
    exit -1
}
expect "Are you sure you want to continue connecting*"
  { send "yes\r" 
; exp_co
ntinue } \
       "password:*"   { send "pillar\r" ; exp_continue
} \
       "#"      { }
[EMAIL PROTECTED] /tmp
$ expect -f t.exp
Logging into pilot 172.18.64.110
spawn ssh [EMAIL PROTECTED]
[EMAIL PROTECTED]'s password:
Last login: Sat Aug 21 13:19:54 2004 from
coibmtest1.test.pillar
[EMAIL PROTECTED] root]#



                
_______________________________
Do you Yahoo!?
Win 1 of 4,000 free domain names from Yahoo! Enter now.
http://promotions.yahoo.com/goldrush

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

Reply via email to