2
0
salt-formula/salt/minion.sls

54 lines
1.4 KiB
Plaintext
Raw Normal View History

{% from "salt/map.jinja" import salt_settings with context %}
2013-06-13 01:53:26 +02:00
salt-minion:
{% if salt_settings.install_packages %}
2013-06-13 01:53:26 +02:00
pkg.installed:
- name: {{ salt_settings.salt_minion }}
{% endif %}
file.recurse:
- name: {{ salt_settings.config_path }}/minion.d
2013-06-13 01:53:26 +02:00
- template: jinja
- source: salt://{{ slspath }}/files/minion.d
- clean: {{ salt_settings.clean_config_d_dir }}
- exclude_pat: _*
2014-12-21 15:35:45 +01:00
- context:
standalone: False
2013-06-13 01:53:26 +02:00
service.running:
- enable: True
- name: {{ salt_settings.minion_service }}
2017-06-14 17:35:00 +02:00
{%- if not salt_settings.restart_via_at %}
2013-06-13 01:53:26 +02:00
- watch:
2017-06-14 17:35:00 +02:00
{%- if salt_settings.install_packages %}
- pkg: salt-minion
2017-06-14 17:35:00 +02:00
{%- endif %}
- file: salt-minion
- file: remove-old-minion-conf-file
{%- else %}
at:
pkg.installed: []
restart-salt-minion:
cmd.wait:
- name: echo salt-call --local service.restart salt-minion | at now + 1 minute
- order: last
2017-06-15 12:30:30 +02:00
- require:
2017-06-14 17:35:00 +02:00
- pkg: at
- watch:
{%- if salt_settings.install_packages %}
- pkg: salt-minion
{%- endif %}
2013-06-13 01:53:26 +02:00
- file: salt-minion
- file: remove-old-minion-conf-file
2017-06-14 17:35:00 +02:00
{%- endif %}
{% if salt_settings.minion_remove_config %}
remove-default-minion-conf-file:
file.absent:
- name: {{ salt_settings.config_path }}/minion
{% endif %}
# clean up old _defaults.conf file if they have it around
remove-old-minion-conf-file:
file.absent:
- name: {{ salt_settings.config_path }}/minion.d/_defaults.conf