mirror of
https://github.com/saltstack-formulas/salt-formula.git
synced 2024-11-30 23:55:23 +01:00
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
511 B
Plaintext
19 lines
511 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: False
|
|
service.running:
|
|
- enable: True
|
|
- name: {{ salt_settings.minion_service }}
|
|
- watch:
|
|
- pkg: salt-minion
|
|
- file: salt-minion
|