Sha256: a444f85a5fef915dea345adbfc78430e25aa11b64abf282cbb2e9652f655e59f

Contents?: true

Size: 822 Bytes

Versions: 61

Compression:

Stored size: 822 Bytes

Contents

#!/usr/bin/expect -f
# Expect script to supply username/password to cap deploy to git private repository
# This script needs username and password as arguments to connect to git server:
# ------------------------------------------------------------------------
# ./git_cap gitusr gitpwd
# -------------------------------------------------------------------------
# set Variables
set g_user [lrange $argv 0 0] 
set g_pwd [lrange $argv 1 1]   
set timeout -1   

spawn cap deploy
match_max 100000

# Look for user prompt
expect "*?sername:*"
send -- "$g_user\r"
send -- "\r"

# Look for passwod prompt
expect "*?assword:*"
send -- "$g_pwd\r"
send -- "\r"

# Look for user prompt
expect "*?sername:*"
send -- "$g_user\r"
send -- "\r"

# Look for passwod prompt
expect "*?assword:*"
send -- "$g_pwd\r"
send -- "\r"

expect eof

Version data entries

61 entries across 46 versions & 1 rubygems

Version Path
magic_recipes-0.0.18 lib/generators/magic_recipes/templates/git_cap.tt
magic_recipes-0.0.17 bin/git_cap
magic_recipes-0.0.17 lib/generators/magic_recipes/templates/git_cap.tt
magic_recipes-0.0.16 lib/generators/magic_recipes/templates/git_cap.tt
magic_recipes-0.0.16 bin/git_cap
magic_recipes-0.0.15 lib/generators/magic_recipes/templates/git_cap.tt
magic_recipes-0.0.15 bin/git_cap
magic_recipes-0.0.14 bin/git_cap
magic_recipes-0.0.13 bin/git_cap
magic_recipes-0.0.12 bin/git_cap
magic_recipes-0.0.11 bin/git_cap
magic_recipes-0.0.10 bin/git_cap
magic_recipes-0.0.9 bin/git_cap
magic_recipes-0.0.8 bin/git_cap
magic_recipes-0.0.7 bin/git_cap
magic_recipes-0.0.6 bin/git_cap
magic_recipes-0.0.5 bin/git_cap
magic_recipes-0.0.4 bin/git_cap
magic_recipes-0.0.3 bin/git_cap
magic_recipes-0.0.2 bin/git_cap