Use a wrapper script for the rcp started from kshd. This change cleans up the
authorEzra Peisach <epeisach@mit.edu>
Tue, 7 May 1996 01:14:09 +0000 (01:14 +0000)
committerEzra Peisach <epeisach@mit.edu>
Tue, 7 May 1996 01:14:09 +0000 (01:14 +0000)
test as written.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@7908 dc483132-0cff-0310-8789-dd5450dbe970

src/tests/dejagnu/krb-standalone/ChangeLog
src/tests/dejagnu/krb-standalone/rcp.exp

index 06518e500d14aa7fe730ce62097f29044f478909..e15c072033b2861c7f641e92564a3d7d173564b2 100644 (file)
@@ -1,5 +1,8 @@
 Mon May  6 08:05:33 1996  Ezra Peisach  <epeisach@kangaroo.mit.edu>
 
+       * rcp.exp: Use a wrapper script to set up the remote rcp as
+               started from kshd. 
+
        * rsh.exp: Setup a wrapper script in executing klist in the remote
                shell so that environment variables are properly set.
 
index 8e8b56966730e8b4a341a73e499cb041fee01e43..a51196c5da41a30cec309d38f279cffdb6d330be 100644 (file)
@@ -15,6 +15,9 @@ if ![info exists KRSHD] {
     set KRSHD [findfile $objdir/../../appl/bsd/kshd]
 }
 
+# Remove old wrapper script
+    catch "exec rm -f $tmppwd/rcp"
+
 # Make sure .k5login is reasonable.
 if ![check_k5login rcp] {
     return
@@ -38,17 +41,13 @@ proc start_rsh_daemon { } {
     global tmppwd
     global krshd_spawn_id
     global krshd_pid
-    global krb5_init_vars
-
-    set opt(0) ""
-    set opt(1) ""
-    set opt(2) ""
-    set opt(3) ""
-    for {set i 0} {$i < [llength $krb5_init_vars]} {incr i} {
-       regexp "^(\[^=\]*)=(.*)" [lindex $krb5_init_vars $i] foo evar evalue
-       set opt($i) "-L$evar"
+
+    # Setup the shared library wrapper for login.krb5
+    if ![file exists $tmppwd/rcp] {
+           setup_wrapper $tmppwd/rcp "$RCP $*"
     }
 
+
     # The -D argument tells it to accept a single connection, so we
     # don't need to use inetd.  The 3544 is the port to listen at.
     #
@@ -58,7 +57,7 @@ proc start_rsh_daemon { } {
     #  a users shell might be sh...
     #  Later a proper fix would be to have kshd exec rcp directly
     #   shell indirection...
-    spawn $KRSHD -k -c -D 3544 -P [file dirname $RCP] -S $tmppwd/srvtab -M $REALMNAME -L ENV_SET $opt(0) $opt(1) $opt(2) $opt(3) 
+    spawn $KRSHD -k -c -D 3544 -P $tmppwd -S $tmppwd/srvtab -M $REALMNAME -L ENV_SET
     set krshd_spawn_id $spawn_id
     set krshd_pid [exp_pid]