Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 6502

Show
Ignore:
Timestamp:
04/05/07 05:18:46 (2 years ago)
Author:
minam
Message:

Make sure the sudo helper understands the SuSE dialect of the sudo password prompt

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • tools/capistrano/CHANGELOG

    r6496 r6502  
    11*SVN* 
     2 
     3* Make sure the sudo helper understands the SuSE dialect of the sudo password prompt [Steven Wisener] 
    24 
    35* Fix synchronization issue with Gateway initialization [Doug Barth] 
  • tools/capistrano/lib/capistrano/configuration/actions/invocation.rb

    r6313 r6502  
    7676           
    7777          Proc.new do |ch, stream, out| 
    78             if out =~ /^Password:/ 
     78            if out =~ /password:/i 
    7979              ch.send_data "#{self[:password]}\n" 
    8080            elsif out =~ /try again/