diff -duprN vixie-cron-4.1/cron.8 vixie-cron-4.1.fhs/cron.8 --- vixie-cron-4.1/cron.8 2005-11-11 01:08:54.000000000 -0600 +++ vixie-cron-4.1.fhs/cron.8 2005-11-11 01:13:30.000000000 -0600 @@ -36,7 +36,7 @@ behavior causing it to run in the foregr starting it out of init. .PP .I Cron -searches /var/cron/tabs for crontab files which are named after accounts in +searches /var/spool/cron for crontab files which are named after accounts in /etc/passwd; crontabs found are loaded into memory. .I Cron also searches for /etc/crontab which is in a different format (see diff -duprN vixie-cron-4.1/crontab.1 vixie-cron-4.1.fhs/crontab.1 --- vixie-cron-4.1/crontab.1 2005-11-11 01:08:54.000000000 -0600 +++ vixie-cron-4.1.fhs/crontab.1 2005-11-11 01:11:36.000000000 -0600 @@ -41,14 +41,14 @@ daemon in ISC Cron. Each user can have these are files in /var, they are not intended to be edited directly. .PP If the -.I cron.allow +.I /etc/cron.allow file exists, then you must be listed therein in order to be allowed to use this command. If the -.I cron.allow +.I /etc/cron.allow file does not exist but the -.I cron.deny +.I /etc/cron.deny file does exist, then you must \fBnot\fR be listed in the -.I cron.deny +.I /etc/cron.deny file in order to use this command. If neither of these files exists, only the super user will be allowed to use this command. .PP @@ -88,8 +88,8 @@ from the editor, the modified crontab wi crontab(5), cron(8) .SH FILES .nf -/var/cron/cron.allow -/var/cron/cron.deny +/etc/cron.allow +/etc/cron.deny .fi .SH STANDARDS The diff -duprN vixie-cron-4.1/pathnames.h vixie-cron-4.1.fhs/pathnames.h --- vixie-cron-4.1/pathnames.h 2005-11-11 01:08:54.000000000 -0600 +++ vixie-cron-4.1.fhs/pathnames.h 2005-11-11 01:09:40.000000000 -0600 @@ -35,7 +35,7 @@ * to; SPOOL_DIR, CRON_ALLOW, CRON_DENY, and LOG_FILE * are all relative to this directory. */ -#define CRONDIR "/var/cron" +#define CRONDIR "/var/spool" #endif /* SPOOLDIR is where the crontabs live. @@ -46,13 +46,13 @@ * newer than they were last time around (or which * didn't exist last time around...) */ -#define SPOOL_DIR "tabs" +#define SPOOL_DIR "cron" /* cron allow/deny file. At least cron.deny must * exist for ordinary users to run crontab. */ -#define CRON_ALLOW "cron.allow" -#define CRON_DENY "cron.deny" +#define CRON_ALLOW "/etc/cron.allow" +#define CRON_DENY "/etc/cron.deny" /* undefining this turns off logging to a file. If * neither LOG_FILE or SYSLOG is defined, we don't log. .