Update of /cvsroot/sandweb/sandweb/lib/SandWeb/Repository
In directory sc8-pr-cvs1:/tmp/cvs-serv11557/lib/SandWeb/Repository
Modified Files:
cvs.pm
Log Message:
finally! conquered SSH host key checking and Expect.
We need a wrapper around SSH for SandWeb to use, so we
can pass the "-o StrictHostKeyChecking no" option ( works in
both OpenSSH and SSH.com versions ).
This eliminates the timeouts and complexity in sandweb-expect.
Index: cvs.pm
===================================================================
RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Repository/cvs.pm,v
retrieving revision 1.44
retrieving revision 1.45
diff -U2 -r1.44 -r1.45
--- cvs.pm 5 Mar 2003 08:19:56 -0000 1.44
+++ cvs.pm 1 Apr 2003 01:21:40 -0000 1.45
@@ -2590,5 +2590,5 @@
my %return = $shell->execute(
- 'command' => "cd $sandbox && MESSAGE_FILE=\"$users_dir/commitmsg\" && export MESSAGE_FILE && CVSEDITOR=$bindir/sandweb-editor && export CVSEDITOR && CVS_RSH=$ssh_bin && export CVS_RSH && $cvs_bin -q -d $root $param \'$file\'",
+ 'command' => "cd $sandbox && MESSAGE_FILE=\"$users_dir/commitmsg\" && export MESSAGE_FILE && CVSEDITOR=$bindir/sandweb-editor && export CVSEDITOR && SSH_BIN=$ssh_bin && export SSH_BIN && CVS_RSH=$bindir/sandweb-ssh && export CVS_RSH && $cvs_bin -q -d $root $param \'$file\'",
);
|