8ebb7f57df
New versions of Salt put config files in /etc/salt/{minion,master}.d. We don't want to erase them by using a clean: True on the file.recurse. This is a backward incompatible change, but it's necessary to avoid deleting Salt config files. Resolves #104
19 lines
510 B
Plaintext
19 lines
510 B
Plaintext
{% from "salt/map.jinja" import salt_settings with context %}
|
|
|
|
salt-minion:
|
|
pkg.installed:
|
|
- name: {{ salt_settings.salt_minion }}
|
|
file.recurse:
|
|
- name: {{ salt_settings.config_path }}/minion.d
|
|
- template: jinja
|
|
- source: salt://salt/files/minion.d
|
|
- clean: {{ salt_settings.clean_config_d_dir }}
|
|
- context:
|
|
standalone: True
|
|
service.dead:
|
|
- enable: False
|
|
- name: {{ salt_settings.minion_service }}
|
|
- require:
|
|
- pkg: salt-minion
|
|
- file: salt-minion
|