Changeset 1753


Ignore:
Timestamp:
Feb 22, 2016 1:49:49 PM (8 years ago)
Author:
maronga
Message:

bugfixes in watchdog and mrun

Location:
palm/trunk/SCRIPTS
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SCRIPTS/mrun

    r1649 r1753  
    1717# PALM. If not, see <http://www.gnu.org/licenses/>.
    1818#
    19 # Copyright 1997-2014  Leibniz Universitaet Hannover
     19# Copyright 1997-2015  Leibniz Universitaet Hannover
    2020#--------------------------------------------------------------------------------#
    2121#
    2222# Current revisions:
    2323# ------------------
    24 #
     24# Bugfix: use random job number when PBS job nummer retrieval fails on lccray*
    2525#
    2626# Former revisions:
     
    18441844 then
    18451845    kennung=$(checkjob $PBS_JOBID | grep Reservation | cut -d" " -s -f2 | cut -d"." -s -f2 | sed "s/['\"]//g")
     1846    if [[ $kennung = "" ]]
     1847    then
     1848       kennung=$RANDOM
     1849    fi
    18461850 else
    18471851    kennung=$RANDOM
  • palm/trunk/SCRIPTS/palm_wd

    r1752 r1753  
    2020# Current revisions:
    2121# -----------------
    22 #
     22# Bugfix: use of global variables is required after updating configuration file
    2323#
    2424# Former revisions:
     
    7575import time
    7676
    77 global update_frequency
    78 
    7977# Determine PALM directories
    8078try:
     
    924922
    925923       global update_frequency
     924       global description
     925       global hostname
     926       global username
     927       
    926928       description = []
    927929       hostname = []
Note: See TracChangeset for help on using the changeset viewer.