1*86d7f5d3SJohn Marino#/* Copyright 1988,1990,1993 by Paul Vixie 2*86d7f5d3SJohn Marino# * All rights reserved 3*86d7f5d3SJohn Marino# * 4*86d7f5d3SJohn Marino# * Distribute freely, except: don't remove my name from the source or 5*86d7f5d3SJohn Marino# * documentation (don't take credit for my work), mark your changes (don't 6*86d7f5d3SJohn Marino# * get me blamed for your possible bugs), don't alter or remove this 7*86d7f5d3SJohn Marino# * notice. May be sold if buildable source is provided to buyer. No 8*86d7f5d3SJohn Marino# * warrantee of any kind, express or implied, is included with this 9*86d7f5d3SJohn Marino# * software; use at your own risk, responsibility for damages (if any) to 10*86d7f5d3SJohn Marino# * anyone resulting from the use of this software rests entirely with the 11*86d7f5d3SJohn Marino# * user. 12*86d7f5d3SJohn Marino# * 13*86d7f5d3SJohn Marino# * Send bug reports, bug fixes, enhancements, requests, flames, etc., and 14*86d7f5d3SJohn Marino# * I'll try to keep a version up to date. I can be reached as follows: 15*86d7f5d3SJohn Marino# * Paul Vixie <paul@vix.com> uunet!decwrl!vixie!paul 16*86d7f5d3SJohn Marino# */ 17*86d7f5d3SJohn Marino 18*86d7f5d3SJohn MarinoVixie Cron V3.0 19*86d7f5d3SJohn MarinoDecember 27, 1993 20*86d7f5d3SJohn Marino[V2.2 was some time in 1992] 21*86d7f5d3SJohn Marino[V2.1 was May 29, 1991] 22*86d7f5d3SJohn Marino[V2.0 was July 5, 1990] 23*86d7f5d3SJohn Marino[V2.0-beta was December 9, 1988] 24*86d7f5d3SJohn Marino[V1.0 was May 6, 1987] 25*86d7f5d3SJohn MarinoPaul Vixie 26*86d7f5d3SJohn Marino 27*86d7f5d3SJohn MarinoThis is a version of 'cron' that is known to run on BSD 4.[23] systems. It 28*86d7f5d3SJohn Marinois functionally based on the SysV cron, which means that each user can have 29*86d7f5d3SJohn Marinotheir own crontab file (all crontab files are stored in a read-protected 30*86d7f5d3SJohn Marinodirectory, usually /var/cron/tabs). No direct support is provided for 31*86d7f5d3SJohn Marino'at'; you can continue to run 'atrun' from the crontab as you have been 32*86d7f5d3SJohn Marinodoing. If you don't have atrun (i.e., System V) you are in trouble. 33*86d7f5d3SJohn Marino 34*86d7f5d3SJohn MarinoA messages is logged each time a command is executed; also, the files 35*86d7f5d3SJohn Marino"allow" and "deny" in /var/cron can be used to control access to the 36*86d7f5d3SJohn Marino"crontab" command (which installs crontabs). It hasn't been tested on 37*86d7f5d3SJohn MarinoSysV, although some effort has gone into making the port an easy one. 38*86d7f5d3SJohn Marino 39*86d7f5d3SJohn MarinoThis is more or less the copyright that USENET contributed software usually 40*86d7f5d3SJohn Marinohas. Since ATT couldn't use this version if they had to freely distribute 41*86d7f5d3SJohn Marinosource, and since I'd love to see them use it, I'll offer some rediculously 42*86d7f5d3SJohn Marinolow license fee just to have them take it. In the unlikely event that they 43*86d7f5d3SJohn Marinodo this, I will continue to support and distribute the pseudo-PD version, so 44*86d7f5d3SJohn Marinoplease, don't flame me for wanting my work to see a wider distribution. 45*86d7f5d3SJohn Marino 46*86d7f5d3SJohn MarinoTo use this: Sorry, folks, there is no cutesy 'Configure' script. You'll 47*86d7f5d3SJohn Marinohave to go edit a couple of files... So, here's the checklist: 48*86d7f5d3SJohn Marino 49*86d7f5d3SJohn Marino Read all the FEATURES, INSTALL, and CONVERSION files 50*86d7f5d3SJohn Marino Edit config.h 51*86d7f5d3SJohn Marino Edit Makefile 52*86d7f5d3SJohn Marino (both of these files have instructions inside; note that 53*86d7f5d3SJohn Marino some things in config.h are definable in Makefile and are 54*86d7f5d3SJohn Marino therefore surrounded by #ifndef...#endif) 55*86d7f5d3SJohn Marino 'make' 56*86d7f5d3SJohn Marino 'su' and 'make install' 57*86d7f5d3SJohn Marino (you may have to install the man pages by hand) 58*86d7f5d3SJohn Marino kill your existing cron process 59*86d7f5d3SJohn Marino (actually you can run your existing cron if you want, but why?) 60*86d7f5d3SJohn Marino build new crontabs using /usr/lib/{crontab,crontab.local} 61*86d7f5d3SJohn Marino (either put them all in "root"'s crontab, or divide it up 62*86d7f5d3SJohn Marino and rip out all the 'su' commands, collapse the lengthy 63*86d7f5d3SJohn Marino lists into ranges with steps -- basically, this step is 64*86d7f5d3SJohn Marino as much work as you want to make it) 65*86d7f5d3SJohn Marino start up the new cron 66*86d7f5d3SJohn Marino (must be done as root) 67*86d7f5d3SJohn Marino watch it. test it with 'crontab -r' and watch the daemon track your 68*86d7f5d3SJohn Marino changes. 69*86d7f5d3SJohn Marino if you like it, change your /etc/{rc,rc.local} to use it instead of 70*86d7f5d3SJohn Marino the old one. 71*86d7f5d3SJohn Marino 72*86d7f5d3SJohn Marino$FreeBSD: src/usr.sbin/cron/doc/README,v 1.4 1999/08/28 01:15:53 peter Exp $ 73*86d7f5d3SJohn Marino$DragonFly: src/usr.sbin/cron/doc/README,v 1.2 2003/06/17 04:29:53 dillon Exp $ 74