Saltstack Official Linux Formula
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

17 lines
431B

  1. {%- from "linux/map.jinja" import system with context %}
  2. {%- if system.enabled %}
  3. {%- for name, service in system.service.items() %}
  4. linux_service_{{ name }}:
  5. service.{{ service.status }}:
  6. {%- if service.status == 'dead' %}
  7. - enable: {{ service.get('enabled', False) }}
  8. {%- elif service.status == 'running' %}
  9. - enable: {{ service.get('enabled', True) }}
  10. {%- endif %}
  11. - name: {{ name }}
  12. {%- endfor %}
  13. {%- endif %}