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:
enabled: true
version: 3005.1
config:
master: salt.paulbsd.com
#ping_interval: 1
## hash_type: sha256
#state_verbose: 'True'
#tcp_keepalive: 'True'
#tcp_keepalive_idle: 300
#random_reauth_delay: 60
#recon_default: 1000
#recon_max: 10000
#recon_randomize: 'True'
deps:
- redis
- ovh
- pynetbox
- cherrypy
- gitdb
config: {}

View File

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