Changeset 3665 for palm/trunk/SCRIPTS


Ignore:
Timestamp:
Jan 10, 2019 8:28:24 AM (5 years ago)
Author:
raasch
Message:

dummy statements added to avoid compiler warnings about unused variables, unused variables removed, ssh-call for submitting batch jobs on remote systems modified again to avoid output of login messages on specific systems

Location:
palm/trunk/SCRIPTS
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SCRIPTS/document_changes

    r2718 r3665  
    1515# PALM. If not, see <http://www.gnu.org/licenses/>.
    1616#
    17 # Copyright 1997-2018 Leibniz Universitaet Hannover
     17# Copyright 1997-2019 Leibniz Universitaet Hannover
    1818#------------------------------------------------------------------------------#
    1919#
  • palm/trunk/SCRIPTS/palmrun

    r3574 r3665  
    2727# -----------------
    2828# $Id$
     29# ssh-call for submitting batch jobs on remote systems modified again to avoid output
     30# of login messages on specific systems
     31#
     32# 3574 2018-11-28 13:14:39Z raasch
    2933# syntax-error in last commit fixed
    3034#
     
    30313035          if [[ $do_trace = true ]]
    30323036          then
    3033              echo "     echo \"cd $remote_jobcatalog; $submit_command ${configuration_identifier}_${run_id}; rm ${configuration_identifier}_${run_id}\"  |  ssh  -q  $ssh_key $SSH_PORTOPT  ${remote_username}@${remote_ip}  2>/dev/null"
     3037             echo "     ssh  -q  $ssh_key $SSH_PORTOPT  ${remote_username}@${remote_ip} \"cd $remote_jobcatalog; $submit_command ${configuration_identifier}_${run_id}; rm ${configuration_identifier}_${run_id}\" "
    30343038          fi
    3035           echo "cd $remote_jobcatalog; $submit_command ${configuration_identifier}_${run_id}; rm ${configuration_identifier}_${run_id}"  |  ssh  -q  $ssh_key $SSH_PORTOPT  ${remote_username}@${remote_ip}  2>/dev/null
     3039          ssh  -q  $ssh_key $SSH_PORTOPT  ${remote_username}@${remote_ip} "cd $remote_jobcatalog; $submit_command ${configuration_identifier}_${run_id}; rm ${configuration_identifier}_${run_id}"
    30363040
    30373041       elif [[ $create_batch_job = true ]]
Note: See TracChangeset for help on using the changeset viewer.