mirror of
https://github.com/saltstack-formulas/salt-formula.git
synced 2025-02-17 17:54:34 +01:00
The syndic service was depending upon itself, which caused the salt run to fail. This commit fixes that by depending on the salt-master service rather than the salt-syndic service. I also made it more general by using IDs to specify the provider rather than the name, which is a bit less reliable.
19 lines
393 B
Plaintext
19 lines
393 B
Plaintext
{% from "salt/map.jinja" import salt_settings with context %}
|
|
|
|
include:
|
|
- salt.master
|
|
|
|
salt-syndic:
|
|
{% if salt_settings.install_packages %}
|
|
pkg.installed:
|
|
- name: {{ salt_settings.salt_syndic }}
|
|
{% endif %}
|
|
service.running
|
|
- require:
|
|
- service: salt-master
|
|
- watch:
|
|
{% if salt_settings.install_packages %}
|
|
- pkg: salt-master
|
|
{% endif %}
|
|
- file: salt-master
|