Changeset 9169
- Timestamp:
- 11/18/08 08:20:42 (16 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r9168 r9169 18 18 19 19 -*-*- END OF LINE -*-*- 20 21 2008/11/18 Stefan Ruegamer 22 23 * datacenter/scripts/read_lapalma_tapes 24 - added this script which is used to read raw file tapes sent from 25 La Palma; executed by root on phoenix (because he should know 26 about the free disc space status) 27 * datacenter/scripts/checkmd5sum 28 - prevented date echo on the executing shell 29 * datacenter/scripts/checktransfer 30 - removed check for .finished files (.finished are no longer used) 31 32 20 33 21 34 2008/11/16 Daniela Dorner -
trunk/MagicSoft/Mars/datacenter/scripts/checkmd5sum
r9136 r9169 69 69 fi 70 70 71 date | tee ${checkpath}/tape_${id}.md5.lapalma | tee ${checkpath}/tape_${id}.md5.wue 71 date | tee ${checkpath}/tape_${id}.md5.lapalma | tee ${checkpath}/tape_${id}.md5.wue > /dev/null 72 72 muxslog=`grep muxdata/20[01][0-9].*/20[01][0-9].*.raw $file | wc -l` 73 73 … … 101 101 done < $file 102 102 103 date | tee -a ${checkpath}/tape_${id}.md5.lapalma | tee -a ${checkpath}/tape_${id}.md5.wue 103 date | tee -a ${checkpath}/tape_${id}.md5.lapalma | tee -a ${checkpath}/tape_${id}.md5.wue > /dev/null 104 104 105 105 if [ ! -f ${checkpath}/tape_${id}.md5.lapalma ] || [ ! -f ${checkpath}/tape_${id}.md5.wue ] -
trunk/MagicSoft/Mars/datacenter/scripts/checktransfer
r8886 r9169 50 50 done 51 51 52 53 #checking the transfer of the rawfiles54 dates=`ls /magic/datacenter/fromlapalma/RAW | grep -v Test`55 56 for date in ${dates[@]}57 do58 if ! ls /magic/datacenter/fromlapalma/RAWchk/$date/$date.finished >/dev/null 2>&159 then60 printprocesslog "WARN .finished for $date not found"61 fi62 done63 64 65 52 #checking if there are temporary zipfiles 66 53 files=`find $datapath/rawfiles/20[0-1][0-9]/ -name ".*\.raw\.??????"` … … 70 57 printprocesslog "WARN found temporary zipfile $file" 71 58 done 72
Note:
See TracChangeset
for help on using the changeset viewer.