0
0
mirror of https://github.com/saltstack-formulas/cron-formula.git synced 2025-02-17 17:54:48 +01:00
cron-formula/cron/service.sls
2017-07-28 01:43:45 +02:00

16 lines
413 B
Plaintext

# -*- coding: utf-8 -*-
# vim: ft=sls
{% from "cron/map.jinja" import cron_settings with context %}
cron.service:
{% if 'enabled' not in cron_settings or ( 'enabled' in cron_settings and cron_settings.enabled ) %}
service.running:
- name: {{ cron_settings.service }}
- enable: True
{% else %}
service.dead:
- name: {{ cron_settings.service }}
- enable: False
{% endif %}