Ignore:
Timestamp:
01/16/12 12:26:12 (13 years ago)
Author:
Daniela Dorner
Message:
included changes of Watz
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/DataCheck/crontab.coma

    r12661 r12743  
    22# cronjobs for coma (Wuerzburg)
    33# change permissions for files and directories in /fact
    4 0 8,18 * * * /bin/chmod -R a+r /fact/raw/
    5 0 8,18 * * * /bin/chmod -R a+r /fact/aux/
    6 0 8,18 * * * /usr/bin/find  /fact/raw/ -type d -exec /bin/chmod a+x {} \;
    7 0 8,18 * * * /usr/bin/find  /fact/aux/ -type d -exec /bin/chmod a+x {} \;
    8 0 8,18 * * * /usr/bin/find  /fact/raw/ -type d -exec /bin/chmod g+x {} \;
    9 0 8,18 * * * /usr/bin/find  /fact/aux/ -type d -exec /bin/chmod g+x {} \;
     4##########################################################################
     5# permissions:
     6#   directories: u:+rwx  g:+rx  o:+rx -> 755
     7#   files:       u:+rw   g:+r   o:+r  -> 644
     8##########################################################################
     90 8,18 * * * /usr/bin/find /fact/raw/ -type d -exec /bin/chmod 755 {} \;
     100 8,18 * * * /usr/bin/find /fact/raw/ -type f -exec /bin/chmod 644 {} \;
     110 8,18 * * * /usr/bin/find /fact/aux/ -type d -exec /bin/chmod 755 {} \;
     120 8,18 * * * /usr/bin/find /fact/aux/ -type f -exec /bin/chmod 644 {} \;
     13
Note: See TracChangeset for help on using the changeset viewer.