]> andersk Git - moira.git/blob - include/update.h
Removed extra RCS headers.
[moira.git] / include / update.h
1 /*
2  * Update mechanism description structure.
3  */
4 struct update_desc {
5      int last_time;             /* when did we try last? */
6      int success;               /* did it succeed? */
7      int interval;              /* interval in minutes between updates */
8      char *service_name;
9      char *host_name;
10      char *target_path;         /* where to put the file */
11      int override;              /* override interval */
12      int enable;                /* can we update at all? */
13      char *instructions;        /* script pathname */
14      char *value1, *value2;     /* these come from the database */
15      int dfgen;
16 };
17
18 char *whoami;
19 extern char sms_data_dir[];
20
21 #define log_DEBUG 0
22 #define log_INFO  1
23 #define log_WARNING 2
24 #define log_ERROR 3
This page took 0.037912 seconds and 5 git commands to generate.