updated salt_minion state
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Paul 2022-12-06 20:34:13 +01:00
parent 8239d0a9ca
commit 17a9aeb847
2 changed files with 13 additions and 11 deletions

View File

@ -2,14 +2,10 @@
salt_minion: salt_minion:
enabled: true enabled: true
version: 3005.1 version: 3005.1
config: deps:
master: salt.paulbsd.com - redis
#ping_interval: 1 - ovh
## hash_type: sha256 - pynetbox
#state_verbose: 'True' - cherrypy
#tcp_keepalive: 'True' - gitdb
#tcp_keepalive_idle: 300 config: {}
#random_reauth_delay: 60
#recon_default: 1000
#recon_max: 10000
#recon_randomize: 'True'

View File

@ -3,3 +3,9 @@
salt-minion-install: salt-minion-install:
pip.installed: pip.installed:
- name: salt=={{ salt_minion.version }} - name: salt=={{ salt_minion.version }}
{% for dep in salt_minion.deps %}
salt-minion-install-{{ dep }}:
pip.installed:
- name: {{ dep }}
{% endfor %}