aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/config.h20
1 files changed, 19 insertions, 1 deletions
diff --git a/src/config.h b/src/config.h
index abab904..6d38a14 100644
--- a/src/config.h
+++ b/src/config.h
@@ -52,6 +52,14 @@
/**
+ * The system's directory for site-specific configurations
+ */
+#ifndef SYSCONFDIR
+#define SYSCONFDIR "/etc"
+#endif
+
+
+/**
* The root directory of all runtime data stored by MDS
*/
#ifndef MDS_RUNTIME_ROOT_DIRECTORY
@@ -143,12 +151,22 @@
/**
- * The minimum time that most have elapsed for respawning to be allowed.
+ * The minimum time that most have elapsed
+ * for respawning to be allowed
*/
#ifndef RESPAWN_TIME_LIMIT_SECONDS
#define RESPAWN_TIME_LIMIT_SECONDS 5
#endif
+/**
+ * The dot-prefixless basename of the initrc
+ * file that the master server executes
+ */
+#ifndef INITRC_FILE
+#define INITRC_FILE "mdsinitrc"
+#endif
+
+
#endif