summaryrefslogtreecommitdiffstats
path: root/include/crm_config.h.in
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 06:53:20 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 06:53:20 +0000
commite5a812082ae033afb1eed82c0f2df3d0f6bdc93f (patch)
treea6716c9275b4b413f6c9194798b34b91affb3cc7 /include/crm_config.h.in
parentInitial commit. (diff)
downloadpacemaker-e5a812082ae033afb1eed82c0f2df3d0f6bdc93f.tar.xz
pacemaker-e5a812082ae033afb1eed82c0f2df3d0f6bdc93f.zip
Adding upstream version 2.1.6.upstream/2.1.6
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'include/crm_config.h.in')
-rw-r--r--include/crm_config.h.in75
1 files changed, 75 insertions, 0 deletions
diff --git a/include/crm_config.h.in b/include/crm_config.h.in
new file mode 100644
index 0000000..a229226
--- /dev/null
+++ b/include/crm_config.h.in
@@ -0,0 +1,75 @@
+/*
+ * Copyright 2006-2021 the Pacemaker project contributors
+ *
+ * The version control history for this file may have further details.
+ *
+ * This source code is licensed under the GNU General Public License version 2
+ * or later (GPLv2+) WITHOUT ANY WARRANTY.
+ */
+
+#ifndef PCMK__CRM_CONFIG__H
+#define PCMK__CRM_CONFIG__H
+
+/****** Versions ******/
+
+/* Current pacemaker version */
+#undef PACEMAKER_VERSION
+
+/* Build version */
+#undef BUILD_VERSION
+
+/****** Other ******/
+
+/* Group to run Pacemaker daemons as */
+#undef CRM_DAEMON_GROUP
+
+/* User to run Pacemaker daemons as */
+#undef CRM_DAEMON_USER
+
+/****** Directories ******/
+
+/* Where Pacemaker can store log files */
+#undef CRM_LOG_DIR
+
+/* Location for Pacemaker daemons */
+#undef CRM_DAEMON_DIR
+
+/* Where to keep blackbox dumps */
+#undef CRM_BLACKBOX_DIR
+
+/* Where to keep configuration files */
+#undef CRM_CONFIG_DIR
+
+/* Where to keep scheduler outputs */
+#undef PE_STATE_DIR
+
+/* Location to store core files produced by Pacemaker daemons */
+#undef CRM_CORE_DIR
+
+/* Where to keep state files and sockets */
+#undef CRM_STATE_DIR
+
+/* Location for the Pacemaker Relax-NG Schema */
+#undef CRM_SCHEMA_DIRECTORY
+
+/* Where to keep configuration files like authkey */
+#undef PACEMAKER_CONFIG_DIR
+
+/* Where OCF resource agents and libraries can be found */
+#undef OCF_ROOT_DIR
+
+/****** Features ******/
+
+/* Set of enabled features */
+#undef CRM_FEATURES
+
+/* Support the Corosync messaging and membership layer */
+#undef SUPPORT_COROSYNC
+
+/* Support systemd based system services */
+#undef SUPPORT_SYSTEMD
+
+/* Support upstart based system services */
+#undef SUPPORT_UPSTART
+
+#endif /* CRM_CONFIG__H */