Changeset 181 for palm/trunk/SCRIPTS/mbuild
- Timestamp:
- Jul 30, 2008 7:07:47 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/mbuild
r169 r181 91 91 # host identifier (local_host) is read from config file 92 92 # 10/10/07 - Siggi - bugfix: handling of comment lines 93 # 18/07/08 - Siggi - adapted for lcsgih 94 # 21/07/08 - Siggi - mainprog (executable) is added to the tar-file 95 # ({mainprog}_current_version) 93 96 94 97 … … 723 726 case $remote_host in 724 727 (lcmuk) remote_addres=130.75.105.2;; 728 (lcsgib) remote_addres=130.73.232.102;; 729 (lcsgih) remote_addres=130.75.4.102;; 725 730 (lctit) remote_addres=172.17.75.161;; 726 731 (decalpha) remote_addres=165.132.26.56;; … … 1299 1304 print "export OBJECT_MODE=64; cd ${remote_md}; echo $make_call_string > LAST_MAKE_CALL; chmod u+x LAST_MAKE_CALL; $make_call_string; [[ \$? != 0 ]] && echo MAKE_ERROR" | ssh ${remote_username}@${remote_addres} 2>&1 | tee ${remote_host}_last_make_protokoll 1300 1305 1306 elif [[ $remote_host = lcsgib || $remote_host = lcsgih ]] 1307 then 1308 1309 print ". /usr/share/modules/init/bash; module load mvapich/mvapich-0.9.9-intel; cd ${remote_md}; echo $make_call_string > LAST_MAKE_CALL; chmod u+x LAST_MAKE_CALL; $make_call_string; [[ \$? != 0 ]] && echo MAKE_ERROR" | ssh ${remote_username}@${remote_addres} 2>&1 | tee ${remote_host}_last_make_protokoll 1310 # print ". /usr/share/modules/init/bash; module load mvapich2/1.2-intel; cd ${remote_md}; echo $make_call_string > LAST_MAKE_CALL; chmod u+x LAST_MAKE_CALL; $make_call_string; [[ \$? != 0 ]] && echo MAKE_ERROR" | ssh ${remote_username}@${remote_addres} 2>&1 | tee ${remote_host}_last_make_protokoll 1311 1301 1312 elif [[ $remote_host = lctit ]] 1302 1313 then … … 1343 1354 if [[ $remote_host != lctit ]] 1344 1355 then 1345 ssh ${remote_username}@${remote_addres} "cd ${remote_md}; chmod u+w *; tar -cf ${mainprog}_current_version.tar *.f90 *.o *.mod"1356 ssh ${remote_username}@${remote_addres} "cd ${remote_md}; chmod u+w *; tar -cf ${mainprog}_current_version.tar ${mainprog} *.f90 *.o *.mod" 1346 1357 else 1347 1358 # TIT ERLAUBT NUR DIE AUSFÜHRUNG GANZ BESTIMMTER KOMMANDOS 1348 1359 # MIT SSH, DESHALB AUFRUF PER PIPE 1349 print "cd ${remote_md}; chmod u+w *; tar -cf ${mainprog}_current_version.tar *.f90 *.o *.mod" | ssh ${remote_username}@${remote_addres} 2>&11360 print "cd ${remote_md}; chmod u+w *; tar -cf ${mainprog}_current_version.tar ${mainprog} *.f90 *.o *.mod" | ssh ${remote_username}@${remote_addres} 2>&1 1350 1361 fi 1351 1362
Note: See TracChangeset
for help on using the changeset viewer.