2017-05-08 15:30:03 +02:00
|
|
|
/*
|
|
|
|
* $Id: globals.h,v 1.10 2004/01/23 19:03:33 vixie Exp $
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
|
|
|
|
* Copyright (c) 1997,2000 by Internet Software Consortium, Inc.
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
|
|
|
|
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Modified 2010/09/12 by Colin Dean, Durham University IT Service,
|
|
|
|
* to add clustering support.
|
|
|
|
*/
|
|
|
|
|
2019-08-06 18:08:05 +02:00
|
|
|
#ifndef CRONIE_GLOBALS_H
|
|
|
|
#define CRONIE_GLOBALS_H
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#include "macros.h"
|
|
|
|
|
2017-05-08 15:30:03 +02:00
|
|
|
#ifdef MAIN_PROGRAM
|
|
|
|
# define XTRN
|
|
|
|
# define INIT(x) = x
|
|
|
|
#else
|
|
|
|
# define XTRN extern
|
|
|
|
# define INIT(x)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
XTRN const char *copyright[]
|
|
|
|
#ifdef MAIN_PROGRAM
|
|
|
|
= {
|
|
|
|
"@(#) ISC Cron V4.1",
|
|
|
|
"@(#) Copyright 1988,1989,1990,1993,1994 by Paul Vixie",
|
|
|
|
"@(#) Copyright 1997,2000 by Internet Software Consortium, Inc.",
|
|
|
|
"@(#) Copyright 2004 by Internet Systems Consortium, Inc.",
|
|
|
|
"@(#) All rights reserved",
|
|
|
|
NULL
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
;
|
|
|
|
|
|
|
|
XTRN const char *MonthNames[]
|
|
|
|
#ifdef MAIN_PROGRAM
|
|
|
|
= {
|
|
|
|
"Jan", "Feb", "Mar", "Apr", "May", "Jun",
|
|
|
|
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec",
|
|
|
|
NULL
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
;
|
|
|
|
|
|
|
|
XTRN const char *DowNames[]
|
|
|
|
#ifdef MAIN_PROGRAM
|
|
|
|
= {
|
|
|
|
"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun",
|
|
|
|
NULL
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
;
|
|
|
|
|
|
|
|
XTRN char *ProgramName;
|
|
|
|
XTRN int LineNumber;
|
|
|
|
XTRN int SyslogOutput;
|
|
|
|
XTRN time_t StartTime;
|
|
|
|
XTRN int NoFork;
|
|
|
|
XTRN int PermitAnyCrontab;
|
2019-08-06 18:08:05 +02:00
|
|
|
XTRN char MailCmd[MAX_COMMAND+1]; /* +1 for terminator */
|
2017-05-08 15:30:03 +02:00
|
|
|
XTRN char cron_default_mail_charset[MAX_ENVSTR];
|
|
|
|
XTRN int EnableClustering;
|
2019-08-06 18:08:05 +02:00
|
|
|
XTRN int ChangePath;
|
|
|
|
XTRN double RandomScale;
|
2017-05-08 15:30:03 +02:00
|
|
|
|
|
|
|
#if DEBUGGING
|
|
|
|
XTRN int DebugFlags INIT(0);
|
|
|
|
XTRN const char *DebugFlagNames[]
|
|
|
|
#ifdef MAIN_PROGRAM
|
|
|
|
= {
|
|
|
|
"ext", "sch", "proc", "pars", "load", "misc", "test", "bit",
|
|
|
|
NULL
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
;
|
|
|
|
#else
|
|
|
|
#define DebugFlags 0
|
|
|
|
#endif /* DEBUGGING */
|
2019-08-06 18:08:05 +02:00
|
|
|
|
|
|
|
#endif /* CRONIE_GLOBALS_H */
|