New version of salt-formula from Saltstack
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
386B

  1. {%- if pillar.salt is defined %}
  2. include:
  3. {%- if pillar.salt.master is defined %}
  4. - salt.master
  5. {%- endif %}
  6. {%- if pillar.salt.minion is defined %}
  7. - salt.minion
  8. {%- endif %}
  9. {%- if pillar.salt.syndic is defined %}
  10. - salt.syndic
  11. {%- endif %}
  12. {%- if pillar.salt.control is defined %}
  13. - salt.control
  14. {%- endif %}
  15. {%- if pillar.salt.api is defined %}
  16. - salt.api
  17. {%- endif %}
  18. {%- endif %}