New version of salt-formula from Saltstack
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

23 行
463B

  1. {% from "salt/map.jinja" import control with context %}
  2. {%- if control.enabled and control.maas_enabled is defined %}
  3. salt_control_maas_packages:
  4. pkg.installed:
  5. - names: {{ control.maas_pkgs }}
  6. {%- for cluster_name, cluster in control.cluster.iteritems() %}
  7. {%- if cluster.engine == "maas" %}
  8. {%- for node_name, node in cluster.node.iteritems() %}
  9. {# TODO: mass.server_active implementation #}
  10. {%- endfor %}
  11. {%- endif %}
  12. {%- endfor %}
  13. {%- endif %}