Saltstack Official Salt 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.

17 line
453B

  1. {% from "salt/package-map.jinja" import pkgs with context %}
  2. salt-minion:
  3. pkg.installed:
  4. - name: {{ pkgs['salt-minion'] }}
  5. file.recurse:
  6. - name: {{ pkgs.get('config-path', '/etc/salt') }}/minion.d
  7. - template: jinja
  8. - source: salt://salt/files/minion.d
  9. - clean: True
  10. service.running:
  11. - enable: True
  12. - name: {{ pkgs.get('minion-service', 'salt-minion') }}
  13. - watch:
  14. - pkg: salt-minion
  15. - file: salt-minion