only allow state to run if it is in top for the node

This commit is contained in:
m0duspwnens
2020-09-02 16:15:52 -04:00
parent 870e042c4c
commit a229ae82ce
39 changed files with 274 additions and 10 deletions

View File

@@ -1,3 +1,8 @@
{% set show_top = salt['state.show_top']() %}
{% set top_states = show_top.values() | join(', ') %}
{% if 'docker' in top_states %}
installdocker:
pkg.installed:
- name: docker-ce
@@ -5,4 +10,6 @@ installdocker:
# Make sure Docker is running!
docker:
service.running:
- enable: True
- enable: TrueA
{% endif %}