Index: trunk/DataCheck/CheckDU.sh
===================================================================
--- trunk/DataCheck/CheckDU.sh	(revision 12882)
+++ trunk/DataCheck/CheckDU.sh	(revision 12932)
@@ -9,14 +9,20 @@
 # get current hour
 hour=`date +%k`
-# define bwlimit for rsync depending on the time
-if [ $hour -lt 10 ] || [ $hour -gt 18 ]
+# define disk space limit for check depending on the time
+if [ $hour -lt 8 ] || [ $hour -gt 15 ]
 then
-   # check 200 GB
-   dulimit=209715200
-   dutext="200 GB"
-else
+   ## check 200 GB
+   #dulimit=209715200
+   #dutext="200 GB"
    # check 500 GB
    dulimit=524288000
    dutext="500 GB"
+else
+   ## check 500 GB
+   #dulimit=524288000
+   #dutext="500 GB"
+   # check 1 TB
+   dulimit=1048576000
+   dutext="1 TB"
 fi
 
