From: Rob H. <for...@us...> - 2002-06-05 06:32:20
|
Update of /cvsroot/sandweb/sandweb/bin In directory usw-pr-cvs1:/tmp/cvs-serv31423/bin Modified Files: sandweb-expect Log Message: changed "unix" to "system" Index: sandweb-expect =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb-expect,v retrieving revision 1.5 retrieving revision 1.6 diff -U2 -r1.5 -r1.6 --- sandweb-expect 4 Jun 2002 07:16:47 -0000 1.5 +++ sandweb-expect 5 Jun 2002 06:32:17 -0000 1.6 @@ -1,9 +1,9 @@ #!expect -# Unix account, vcs password : -# input : unix_vcs system_username system_password vcs_password vcs_command +# System account, vcs password : +# input : system_vcs system_username system_password vcs_password vcs_command # # Unix account, no vcs password : -# input : unix system_username system_password vcs_command +# input : system system_username system_password vcs_command # # No Unix account, vcs password: @@ -12,5 +12,5 @@ set timeout -1 -if {[lindex $argv 0]=="unix_vcs"} { +if {[lindex $argv 0]=="system_vcs"} { set system_username [lindex $argv 1] set system_password [lindex $argv 2] @@ -33,5 +33,5 @@ } -if {[lindex $argv 0]=="unix"} { +if {[lindex $argv 0]=="system"} { set system_username [lindex $argv 1] set system_password [lindex $argv 2] |