| /freebsd-13.1/usr.sbin/cron/doc/ |
| H A D | CONVERSION | 3 Conversion of BSD 4.[23] crontab files: 5 Edit your current crontab (/usr/lib/crontab) into little pieces, with each 14 Leave the original /usr/lib/crontab! This cron doesn't use it, so you may 20 I recommend /etc/crontab.src or /usr/adm/crontab.src. 23 'news' also, perhaps in /usr/lib/news/crontab.src... 26 (except you) where you put the crontab source files. The `crontab' command 28 after the user whose crontab it is. If you want to examine, replace, or 29 delete a crontab, the `crontab' command does all of those things. The 34 On 4.2, your crontab might have a few lines like this: 55 # /usr/lib/uucp/crontab.src - uucp's crontab [all …]
|
| H A D | Makefile.vixie | 88 MANPAGES = bitstring.3 crontab.5 crontab.1 cron.8 putman.sh 91 SOURCES = cron.c crontab.c database.c do_command.c entry.c \ 96 LINT_CRONTAB = crontab.c misc.c entry.c env.c compat.c 99 CRONTAB_OBJ = crontab.o misc.o entry.o env.o compat.o 101 all : cron crontab 112 crontab : $(CRONTAB_OBJ) 113 $(CC) $(LDFLAGS) -o crontab $(CRONTAB_OBJ) $(LIBS) 117 $(INSTALL) -c -m 4111 -o root -s crontab $(DESTBIN)/ 118 sh putman.sh crontab.1 $(DESTMAN) 120 sh putman.sh crontab.5 $(DESTMAN) [all …]
|
| H A D | FEATURES | 5 -- Environment variables can be set in each crontab. SHELL, USER, 7 USER can be changed in the crontab. PATH is especially useful to 28 person that cron mails the output of commands in that crontab. This is 44 -- Each user gets their own crontab file. This is a win over BSD 4.2, 50 -- The 'crontab' command is loosely compatible with SysV, but has more 51 options which just generally make more sense. Running crontab with 58 -- (big win) If the `crontab' command changes anything in any crontab, 61 daemon whenever you change a crontab. In other crons, the crontab 65 readable or writable except by 'crontab' or 'cron'. This is not a 66 problem, since 'crontab' will let you do pretty much whatever you [all …]
|
| H A D | INSTALL | 27 both the daemon and the `crontab' program will do this the first time they 55 Edit your /usr/lib/crontab file into little pieces -- see the CONVERSION file 58 Use the `crontab' command to install all the little pieces you just created. 61 crontab -u uucp -r /usr/lib/uucp/crontab.src 62 crontab -u news -r /usr/lib/news/crontab.src 63 crontab -u root -r /usr/adm/crontab.src 67 they are reinstalled with another `crontab -r' command. (2) The crontab 68 command will affect the crontab of the person using the command unless `-u 70 under most BSD's, `crontab' will still think of you as yourself even though 72 option stands for `replace'; check the man page for crontab(1) for other
|
| H A D | README | 29 their own crontab file (all crontab files are stored in a read-protected 31 'at'; you can continue to run 'atrun' from the crontab as you have been 36 "crontab" command (which installs crontabs). It hasn't been tested on 60 build new crontabs using /usr/lib/{crontab,crontab.local} 61 (either put them all in "root"'s crontab, or divide it up 67 watch it. test it with 'crontab -r' and watch the daemon track your
|
| H A D | CHANGES | 8 The crontab command now conforms to POSIX 1003.2. This means that when you 9 install it, if you have any "crontab" command lines floating around in shell 17 is the ability to read in an /etc/crontab file which has an extra field in 19 name, and it permits the /etc/crontab command to contain commands which are 20 to be run by any user on the system. /etc/crontab is not "installed" via 24 I also added a "-e" option to crontab(1). Nine people also sent me diffs 101 nasty security hole in "crontab -r". 'Nuff said. 119 problem in my "crontab -e" implementation. 130 all the crontab files; V2 uses the modtime the crontab directory as a flag to 149 and trying to open each crontab. [all …]
|
| H A D | MAIL | 32 We have a lot of lines in our crontab of the form 115 of finding out why my crontab entry did not work. 137 write to their own crontab files). I'll add '-' (read stdin) 138 to the crontab installer program to facilitate this. >> 152 execution around, and purge it when the crontab was overwritten. 194 in a crontab entry. I'd assumed that it was 271 crontab files are in /usr/spool/cron/crontabs, in the SysV 376 different ulimits for their crontab entries? 379 it in a crontab? Suggestions, enlightenment, etc ?? >> 414 << whenever the 'crontab' program is run and updates a crontab file, [all …]
|
| H A D | THANKS | 25 -> crontab says the right thing if you do something you shouldn't do 26 -> crontab(5) man page is longer and more informative
|
| /freebsd-13.1/usr.sbin/cron/crontab/ |
| H A D | Makefile | 5 PROG= crontab 6 MAN= crontab.1 crontab.5
|
| /freebsd-13.1/usr.sbin/cron/cron/ |
| H A D | user.c | 38 for (e = u->crontab; e != NULL; e = ne) { 83 u->crontab = NULL; 107 e->next = u->crontab; 108 u->crontab = e;
|
| H A D | cron.c | 210 for (e = u->crontab; e != NULL; e = e->next) { 258 for (e = u->crontab; e != NULL; e = e->next) { in cron_tick() 273 for (e = u->crontab; e != NULL; e = e->next) { in cron_tick() 288 for (e = u->crontab; e != NULL; e = e->next) { in cron_tick() 315 for (e = u->crontab; e != NULL; e = e->next) { in cron_tick() 474 for (e = u->crontab; e != NULL; e = e->next) { 571 for (e = u->crontab; e != NULL; e = e->next) { in run_at_secres() 586 for (e = u->crontab; e != NULL; e = e->next) { in find_interval_entry()
|
| H A D | crontab | 1 # /etc/crontab - root's crontab for FreeBSD
|
| H A D | Makefile | 3 CONFS= crontab
|
| H A D | cron.h | 210 entry *crontab; /* this person's crontab */ member
|
| H A D | database.c | 322 for (e = u->crontab; e != NULL; e = e->next) {
|
| /freebsd-13.1/share/examples/etc/ |
| H A D | README.examples | 13 crontab - system scheduled command table (see crontab(5)) 63 security - script run from crontab to do nightly security checks
|
| /freebsd-13.1/usr.sbin/cron/ |
| H A D | Makefile | 3 SUBDIR= lib cron crontab
|
| /freebsd-13.1/usr.bin/at/ |
| H A D | atrun | 6 # See crontab(5) for field format.
|
| /freebsd-13.1/release/tools/ |
| H A D | gce.conf | 79 cat << EOF >> ${DESTDIR}/etc/crontab
|
| /freebsd-13.1/share/doc/smm/01.setup/ |
| H A D | spell.ok | 247 crontab 248 crontab.local
|
| /freebsd-13.1/contrib/openbsm/etc/ |
| H A D | audit_event | 626 6148:AUE_crontab_create:crontab-crontab created:ad 627 6149:AUE_crontab_delete:crontab-crontab deleted:ad 628 6150:AUE_crontab_perm:crontab-permission:no 648 6170:AUE_crontab_mod:crontab-modify:ad
|
| /freebsd-13.1/tools/tools/tinybsd/conf/minimal/ |
| H A D | tinybsd.basefiles | 95 usr/bin/crontab
|
| /freebsd-13.1/contrib/ntp/scripts/update-leap/ |
| H A D | update-leap-opts.def | 140 For cron-friendly behavior, define CRONJOB=1 in the crontab.
|
| /freebsd-13.1/tools/tools/tinybsd/conf/vpn/ |
| H A D | tinybsd.basefiles | 106 usr/bin/crontab
|
| /freebsd-13.1/tools/tools/tinybsd/conf/bridge/ |
| H A D | tinybsd.basefiles | 107 usr/bin/crontab
|