Merge "Add function which increments network addresses and returns list of first host addresses"
diff --git a/reclass/files/reclass-config.yml b/reclass/files/reclass-config.yml
index d20d2be..c9a306c 100644
--- a/reclass/files/reclass-config.yml
+++ b/reclass/files/reclass-config.yml
@@ -18,7 +18,23 @@
{%- if storage.propagate_pillar_data_to_reclass == True %}
propagate_pillar_data_to_reclass: {{ storage.propagate_pillar_data_to_reclass }}
{%- endif %}
+# Below option are not available in original reclass,
+# use fork with extensions from https://github.com/salt-formulas/reclass
{%- if storage.ignore_class_notfound == True %}
-# Below option is not available in upstream reclass, and require fork https://github.com/salt-formulas/reclass
ignore_class_notfound: {{ storage.ignore_class_notfound }}
{%- endif %}
+{%- if storage.allow_scalar_over_dict is defined %}
+allow_scalar_over_dict: {{ storage.allow_scalar_over_dict }}
+{%- endif %}
+{%- if storage.allow_scalar_over_list is defined %}
+allow_scalar_over_list: {{ storage.allow_scalar_over_list }}
+{%- endif %}
+{%- if storage.allow_list_over_scalar is defined %}
+allow_list_over_scalar: {{ storage.allow_list_over_scalar }}
+{%- endif %}
+{%- if storage.allow_dict_over_scalar is defined %}
+allow_dict_over_scalar: {{ storage.allow_dict_over_scalar }}
+{%- endif %}
+{%- if storage.allow_none_override is defined %}
+allow_none_override: {{ storage.allow_none_override }}
+{%- endif %}