[COPY] --- T2-COPYRIGHT-BEGIN --- [COPY] t2/package/*/cron/cron.desc [COPY] Copyright (C) 2004 - 2025 The T2 SDE Project [COPY] Copyright (C) 1998 - 2003 ROCK Linux Project [COPY] SPDX-License-Identifier: GPL-2.0 [COPY] --- T2-COPYRIGHT-END --- [I] The Vixie cron daemon for executing specified programs at set times [T] This is a version of 'cron' that is known to run on BSD 4.[23] systems. It [T] is functionally based on the SysV cron, which means that each user can have [T] their own crontab file (all crontab files are stored in a read-protected [T] directory, usually /var/cron/tabs). No direct support is provided for [T] 'at'; you can continue to run 'atrun' from the crontab as you have been [T] doing. If you don't have atrun (i.e., System V) you are in trouble. [A] Paul Vixie [M] Rene Rebe [C] base/system [F] CROSS [L] Free-to-use [S] Stable [V] 3.0pl1-113 [P] X -----5---9 186.800 [CV-URL] ftp://ftp.debian.org/debian/pool/main/c/cron/ [D] 4275794532 cron3.0pl1.tar.gz ftp://metalab.unc.edu/pub/Linux/system/daemons/cron/ [D] 3476827842 cron_3.0pl1-113.diff.gz ftp://ftp.debian.org/debian/pool/main/c/cron/ var_append CC_WRAPPER_APPEND ' ' -std=gnu17 crondiff=`match_source_file -p diff` [ -z "$crondiff" ] || var_insert patchfiles ' ' $crondiff cron_inst() { cp $confdir/crontab $root/etc/ chmod 600 $root/etc/crontab cp $confdir/cron.run.sh $root/usr/sbin/cron.run chmod +x $root/usr/sbin/cron.run # prepare crontabs dir for normal users (crontab -e) mkdir -p $root/var/spool/cron/crontabs chmod a+rx $root/var/spool/cron chmod 1730 $root/var/spool/cron/crontabs chgrp 53 $root$bindir/crontab $root/var/spool/cron/crontabs chmod u-s,g+s $root$bindir/crontab } hook_add postmake 5 'cron_inst'