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.

minion.sls 445B

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