Ignore:
Timestamp:
07/30/05 01:15:40 (19 years ago)
Author:
Daniela Dorner
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/datacenter/scripts/runganymed

    r7232 r7233  
    4444
    4545scriptlogpath=$logpath/run/ganymed/`date +%Y/%m/%d`
    46 if [ ! -d $scriptlogpath ]
    47 then
    48   mkdir -pv $scriptlogpath
    49   if [ ! -d $scriptlogpath ]
    50   then
    51      echo "could not make scriptlogpath "$scriptlogpath
    52      exit
    53   fi
    54 fi
     46makedir $scriptlogpath
    5547
    5648scriptlog=$scriptlogpath/runganymed-$datetime.log
     
    5850date >> $scriptlog 2>&1
    5951
    60 
    61 if [ ! -d $getstatuslogpath ]
    62 then
    63   mkdir -pv $getstatuslogpath >> $scriptlog 2>&1
    64   if [ ! -d $getstatuslogpath ]
    65   then
    66      echo "could not make getstatuslogpath "$getstatuslogpath >> $scriptlog 2>&1
    67      date  >> $scriptlog 2>&1
    68      exit
    69   fi
    70 fi
     52makedir $getstatuslogpath >> $scriptlog 2>&1
    7153
    7254cd $mars
     
    172154  outpath="$datapath/ganymed/$no/$no2"
    173155  echo "outpath: "$outpath >> $scriptlog 2>&1
    174   if [ ! -d $outpath ]
    175   then
    176     mkdir -pv $outpath >> $scriptlog 2>&1
    177     if [ ! -d $outpath ]
    178     then
    179        echo "could not make outpath $outpath -> continue " >> $scriptlog 2>&1
    180        continue
    181     fi
    182   fi
     156  makedir $outpath >> $scriptlog 2>&1
     157
    183158  datasetfile="$datasetpath/$no/dataset$no2.txt"
    184159  echo "datasetfile: "$datasetfile >> $scriptlog 2>&1
     
    201176          echo "-> inserting the status for ganymed for dataset $dataset into the db" >> $scriptlog 2>&1
    202177          setstatuslogpath=$logpath/setstatus/ganymed/$no
    203           if [ ! -d $setstatuslogpath ]
    204           then
    205              mkdir -pv $setstatuslogpath >> $scriptlog 2>&1
    206              if [ ! -d $setstatuslogpath ]
    207              then
    208                 echo "could not make setstatuslogpath "$setstatuslogpath >> $scriptlog 2>&1
    209                 continue
    210              fi
    211           fi
     178          makedir $setstatuslogpath >> $scriptlog 2>&1
    212179          setstatuslog=$setstatuslogpath/setstatus-ganymed-$no2.log
     180
    213181          check4=`root -q -b $macrospath/setstatus.C+\("\"$dataset\""\,"\"$table\""\,"\"$column\""\,"\"Now()\""\) | tee $setstatuslog | grep int | sed -e 's/(int)//'`
    214182          case $check4 in
Note: See TracChangeset for help on using the changeset viewer.