[pisa-src] r2573 - trunk/tools/testbed/plugins/actions/run/node_hook

  • From: Samuel Richter <samuel.richter@xxxxxxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Mon, 16 May 2011 19:49:37 +0200

Author: richter
Date: Mon May 16 19:49:37 2011
New Revision: 2573

Log:
testbed interface: do not get a pseudo-tty on ssh remote command execution

Modified:
   trunk/tools/testbed/plugins/actions/run/node_hook

Modified: trunk/tools/testbed/plugins/actions/run/node_hook
==============================================================================
--- trunk/tools/testbed/plugins/actions/run/node_hook   Mon May 16 19:47:06 
2011        (r2572)
+++ trunk/tools/testbed/plugins/actions/run/node_hook   Mon May 16 19:49:37 
2011        (r2573)
@@ -2,6 +2,6 @@
 set +e
 SSH_HOST="pisa-$NODE"
 SSH_OPTS=" -o ConnectTimeout=5 -o BatchMode=yes -o StrictHostKeyChecking=no -o 
LogLevel=quiet"
-ssh $SSH_OPTS -t -p ${SSH_PORT:-22} ${SSH_USER:-$USER}@${SSH_HOST:-$NODE} . 
/etc/profile \> /dev/null \; $ARGUMENTS ||\
+ssh $SSH_OPTS -p ${SSH_PORT:-22} ${SSH_USER:-$USER}@${SSH_HOST:-$NODE} . 
/etc/profile \> /dev/null \; $ARGUMENTS ||\
     echo "error running $ARGUMENTS on $NODE; returned \"$?\""
 set -e
-- 
This is the pisa developer mailing list. Please also subscribe to the main pisa 
list at:
//www.freelists.org/list/pisa

Other related posts:

  • » [pisa-src] r2573 - trunk/tools/testbed/plugins/actions/run/node_hook - Samuel Richter