diff options
Diffstat (limited to 'include/configreader.h')
-rw-r--r-- | include/configreader.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/configreader.h b/include/configreader.h index 460fd342c..be5c582b9 100644 --- a/include/configreader.h +++ b/include/configreader.h @@ -146,6 +146,18 @@ struct CommandLineConf */ bool writelog; + /** If this is true, a PID file will be written + * to the file given in the "file" variable of + * the <pid> tag in the config file. This is + * the default. + * Passing --nopid as a command line argument + * sets this to false; in this case, a PID file + * will not be written, even the default PID + * file that is usually written when the <pid> + * tag is not defined in the config file. + */ + bool writepid; + /** Saved argc from startup */ int argc; |