7649c26a0d
Salt writes it's schedule file to /etc/salt/{minion,master}.d/_schedule.conf We don't want to stomp all over Salt's files, but we do want a pristine starting point to lay down our managed config. So we use clean: True on the file.recurse call, but we tell it to ignore files that start with an _ We have to rename the current config file (_defaults.conf) because it will be ignored by the rule that ignores Salt's _* config files. This also means we need to clean up old config files (_defaults.conf) and restart the service if we cleaned it up.
29 lines
789 B
Plaintext
29 lines
789 B
Plaintext
{% from "salt/map.jinja" import salt_settings with context %}
|
|
|
|
salt-minion:
|
|
{% if salt_settings.install_packages %}
|
|
pkg.installed:
|
|
- name: {{ salt_settings.salt_minion }}
|
|
{% endif %}
|
|
file.recurse:
|
|
- name: {{ salt_settings.config_path }}/minion.d
|
|
- template: jinja
|
|
- source: salt://salt/files/minion.d
|
|
- clean: {{ salt_settings.clean_config_d_dir }}
|
|
- exclude_pat: _*
|
|
- context:
|
|
standalone: True
|
|
service.dead:
|
|
- enable: False
|
|
- name: {{ salt_settings.minion_service }}
|
|
- require:
|
|
{% if salt_settings.install_packages %}
|
|
- pkg: salt-minion
|
|
{% endif %}
|
|
- file: salt-minion
|
|
|
|
# clean up old _defaults.conf file if they have it around
|
|
remove-old-standalone-conf-file:
|
|
file.absent:
|
|
- name: /etc/salt/minion.d/_defaults.conf
|