Saltstack Official FirewallD Formula
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.

12 lines
305B

  1. # == State: firewalld.backends
  2. #
  3. # This state ensures that /etc/firewalld/backends/ exists.
  4. #
  5. {% from "firewalld/map.jinja" import firewalld with context %}
  6. {%- if salt['pillar.get']('firewalld:installbackend') %}
  7. package_backend:
  8. pkg.installed:
  9. - name: {{ firewalld.backendpackage }}
  10. {%- endif %}