2
0
salt-formula/salt/minion.sls
Andrew Vant 00e245e20a Added recursive management of minion.d and master.d.
This allows users to easily add configuration settings that the formula
doesn't yet provide, without having to modify the existing templates.
2014-10-06 11:56:07 -04:00

16 lines
360 B
Plaintext

{% from "salt/package-map.jinja" import pkgs with context %}
salt-minion:
pkg.installed:
- name: {{ pkgs['salt-minion'] }}
file.recurse:
- name: /etc/salt/minion.d
- template: jinja
- source: salt://salt/files/minion.d
- clean: True
service.running:
- enable: True
- watch:
- pkg: salt-minion
- file: salt-minion