diff options
author | Sadie Powell <sadie@witchery.services> | 2021-01-18 06:56:18 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2021-01-18 07:05:27 +0000 |
commit | a59ed4b39443eb788c15c65501898ca374387e2e (patch) | |
tree | a20c0bee867288e956d171ed733b3c7747c2a316 /src/configreader.cpp | |
parent | 8b2f3980cc8e5bfb0153981b5ca6b08ca39392c2 (diff) |
Add a new runtime directory and move the pid file to it.
The data directory is intended for persistent files whereas the pid
file is ephemeral. This distinction doesn't matter by default but
on system-wide installs ephemeral runtime files go in /var/run or
/run instead.
Diffstat (limited to 'src/configreader.cpp')
-rw-r--r-- | src/configreader.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp index f96836507..3977be25e 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -57,6 +57,7 @@ ServerConfig::ServerPaths::ServerPaths(ConfigTag* tag) , Data(tag->getString("datadir", INSPIRCD_DATA_PATH, 1)) , Log(tag->getString("logdir", INSPIRCD_LOG_PATH, 1)) , Module(tag->getString("moduledir", INSPIRCD_MODULE_PATH, 1)) + , Runtime(tag->getString("runtimedir", INSPIRCD_RUNTIME_PATH, 1)) { } |