1 | #!/bin/sh
|
---|
2 | #
|
---|
3 | # ========================================================================
|
---|
4 | #
|
---|
5 | # *
|
---|
6 | # * This file is part of MARS, the MAGIC Analysis and Reconstruction
|
---|
7 | # * Software. It is distributed to you in the hope that it can be a useful
|
---|
8 | # * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
|
---|
9 | # * It is distributed WITHOUT ANY WARRANTY.
|
---|
10 | # *
|
---|
11 | # * Permission to use, copy, modify and distribute this software and its
|
---|
12 | # * documentation for any purpose is hereby granted without fee,
|
---|
13 | # * provided that the above copyright notice appear in all copies and
|
---|
14 | # * that both that copyright notice and this permission notice appear
|
---|
15 | # * in supporting documentation. It is provided "as is" without express
|
---|
16 | # * or implied warranty.
|
---|
17 | # *
|
---|
18 | #
|
---|
19 | #
|
---|
20 | # Author(s): Daniela Dorner 08/2005 <mailto:dorner@astro.uni-wuerzburg.de>
|
---|
21 | #
|
---|
22 | # Copyright: MAGIC Software Development, 2000-2007
|
---|
23 | #
|
---|
24 | #
|
---|
25 | # ========================================================================
|
---|
26 | #
|
---|
27 | # This script is removing lock files which are older than 12 hours.
|
---|
28 | #
|
---|
29 | # Each process in the automatic analysis is writing a lock file. As these
|
---|
30 | # processes are launched with condor, they are stopped after 12 hours, if
|
---|
31 | # they are still running. In this case the lock files are not removed.
|
---|
32 | #
|
---|
33 | # By comparing the date of the lock file and the current date, the
|
---|
34 | # running time of a process is determined and if it is bigger than 12
|
---|
35 | # hours (which means that the process has been already kill by condor) the
|
---|
36 | # lock file is removed
|
---|
37 | #
|
---|
38 |
|
---|
39 | source `dirname $0`/sourcefile
|
---|
40 | printprocesslog "INFO starting $0"
|
---|
41 |
|
---|
42 | files=`ls $lockpath/* 2>/dev/null`
|
---|
43 |
|
---|
44 | for file in ${files[@]}
|
---|
45 | do
|
---|
46 | filedate=`date +%Y%j%H%M -r $file`
|
---|
47 | #date to compare: now - 12hours
|
---|
48 | compdate=`date +%Y%j%H%M --date="-12hour"`
|
---|
49 |
|
---|
50 | if [ $compdate -gt $filedate ]
|
---|
51 | then
|
---|
52 | printprocesslog "WARN lockfile $file is older than 12 hours"
|
---|
53 | # printprocesslog "INFO removing file $file"
|
---|
54 | # rm -v $file
|
---|
55 | # echo "date: "$filedate
|
---|
56 | # echo "comp: "$compdate
|
---|
57 | # date
|
---|
58 | fi
|
---|
59 | done
|
---|
60 |
|
---|
61 | printprocesslog "INFO finished $0"
|
---|
62 |
|
---|