Index: trunk/DataCheck/crontab.coma
===================================================================
--- trunk/DataCheck/crontab.coma	(revision 12693)
+++ trunk/DataCheck/crontab.coma	(revision 12743)
@@ -2,8 +2,12 @@
 # cronjobs for coma (Wuerzburg)
 # change permissions for files and directories in /fact
-0 8,18 * * * /bin/chmod -R a+r /fact/raw/
-0 8,18 * * * /bin/chmod -R a+r /fact/aux/
-0 8,18 * * * /usr/bin/find  /fact/raw/ -type d -exec /bin/chmod a+x {} \; 
-0 8,18 * * * /usr/bin/find  /fact/aux/ -type d -exec /bin/chmod a+x {} \; 
-0 8,18 * * * /usr/bin/find  /fact/raw/ -type d -exec /bin/chmod g+x {} \; 
-0 8,18 * * * /usr/bin/find  /fact/aux/ -type d -exec /bin/chmod g+x {} \; 
+##########################################################################
+# permissions: 
+#   directories: u:+rwx  g:+rx  o:+rx -> 755
+#   files:       u:+rw   g:+r   o:+r  -> 644
+##########################################################################
+0 8,18 * * * /usr/bin/find /fact/raw/ -type d -exec /bin/chmod 755 {} \;
+0 8,18 * * * /usr/bin/find /fact/raw/ -type f -exec /bin/chmod 644 {} \;
+0 8,18 * * * /usr/bin/find /fact/aux/ -type d -exec /bin/chmod 755 {} \;
+0 8,18 * * * /usr/bin/find /fact/aux/ -type f -exec /bin/chmod 644 {} \;
+
