/* Mandatory: where to load the config file from */
#define CFGFILE "/etc/sud0.conf"

/* Optional: if defined, accept CFGFILE only if owned by this UID.
   It is highly recommended to accept only root (0) owned config files.
   Independently of this setting, the config file is accepted only if
   it can not be written by group or others.
   */
#define CFGUID 0

/* Optional: If defined, this is the input file/dir for CFGFILE; stat() this
   on start and if it's newer than CFGFILE run CFGGEN with system() before
   readong CFGFILE. If CFGSRC points to a directory, make sure you mv files
   in there (from the same device) or touch the dir after editing files to
   get its mtime updated.
   NOTE: mtime is compared only on second precision. */
/*#define CFGSRC "sud0.conf.d"*/

/* Optional: if CFGSRC is defined, this is the command that can generate
   CFGFILE from CFGSRC. Note: care must be taken to avoid race conditions
   when multiple sud0s are running in parallel or even while CFGGEN is running.
   Your CFGGEN implementation probably needs a lock.
*/
/*#define CFGGEN "echo ---cfggen---"*/

