summaryrefslogtreecommitdiffstats
path: root/config/gluster-host.cfg.template
diff options
context:
space:
mode:
Diffstat (limited to 'config/gluster-host.cfg.template')
-rw-r--r--config/gluster-host.cfg.template34
1 files changed, 34 insertions, 0 deletions
diff --git a/config/gluster-host.cfg.template b/config/gluster-host.cfg.template
new file mode 100644
index 0000000..bd1b2af
--- /dev/null
+++ b/config/gluster-host.cfg.template
@@ -0,0 +1,34 @@
+###@GENERATED@###
+# AUTO-GENERATED FILE. DO NOT MODIFY.
+#
+# This confinguration file was automatically generated by the
+# Gluster Auto Discovery tool. It should not be modified by hand.
+#
+
+{% if host['use'] == 'gluster-cluster' -%}
+define hostgroup{
+hostgroup_name {{host['host_name']}}
+alias {{host['alias']}}
+}
+{%- endif %}
+
+define host{
+use {{host['use']}}
+host_name {{host['host_name']}}
+alias {{host['alias']}}
+address {{host['address']}}
+{% if host['check_command'] != "" -%}
+check_command {{host['check_command']}}
+{% endif -%}
+{% if host['hostgroups'] != "" -%}
+hostgroups {{host['hostgroups']}}
+{% endif -%}
+}
+
+{% for service in host['host_services'] %}
+define service{
+{%- for key, value in service.iteritems() %}
+{{ key.ljust(20) }} {{ value }}
+{%- endfor %}
+}
+{% endfor %}