Only seed database for Debian install if we're using default config
[onak.git] / onak-conf.h
1 /*
2  * onak-conf.h - Routines related to runtime config.
3  *
4  * Jonathan McDowell <noodles@earth.li>
5  *
6  * Copyright 2002 Project Purple
7  */
8
9 #ifndef __ONAK_CONF_H_
10 #define __ONAK_CONF_H_
11
12 #include "keydb.h"
13
14 /*
15  *      struct onak_config - Runtime configuration for onak.
16  *      @maxkeys: The maximum number of keys a query should return.
17  *      @thissite: Our email address that servers sync with.
18  *      @adminemail: The email address of the server admin.
19  *      @mta: The mta to invoke to send sync mails.
20  *      @syncsites: A linked list of sites we sync with.
21  *
22  *      @db_dir: The path to the directory containing the database files.
23  * 
24  *      @pg_dbhost: The host that Postgres is running on.
25  *      @pg_dbname: The database name.
26  *      @pg_dbuser: The user we should connect as.
27  *      @pg_dbpass: The password for the user.
28  *
29  *      This structure holds various runtime configuration options for onak. It
30  *      will eventually be populated from the config file.
31  */
32 struct onak_config {
33         /*
34          * Generic options.
35          */
36         int maxkeys;
37         char *thissite;
38         char *adminemail;
39         char *mta;
40         struct ll *syncsites;
41         char *logfile;
42
43         /*
44          * Options for any database backend that needs a directory, be it the
45          * file, db2 or db3 options.
46          */
47         char *db_dir;
48         
49         /*
50          * Options for the Postgres backend.
51          */
52         char *pg_dbhost;
53         char *pg_dbname;
54         char *pg_dbuser;
55         char *pg_dbpass;
56
57         /*
58          * Options for the dynamic backend.
59          */
60         char *db_backend;
61         char *backends_dir;
62
63         struct dbfuncs *dbbackend;
64 };
65
66 /*
67  *      config - The variable containing our runtime config.
68  */
69 extern struct onak_config config;
70
71 /*
72  *      readconfig - read the onak config.
73  *      @configfile - the config file to read.
74  *
75  *      Read in our config file. If config file is NULL read in the compile
76  *      time default.
77  */
78 void readconfig(const char *configfile);
79
80 /*
81  *      cleanupconfig - clean up the config when we're shutting down.
82  */
83 void cleanupconfig(void);
84
85 #endif /* __ONAK_CONF_H_ */