mirror of
https://github.com/saltstack-formulas/cron-formula.git
synced 2026-07-18 03:44:49 +02:00
style(state): avoid complicated comparison
This commit is contained in:
@@ -4,3 +4,4 @@
|
||||
cron:
|
||||
pkg: cronie
|
||||
service: cron
|
||||
enabled: true
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
{%- from tplroot ~ "/map.jinja" import cron with context %}
|
||||
|
||||
cron.service:
|
||||
{%- if 'enabled' not in cron or ( 'enabled' in cron and cron.enabled ) %}
|
||||
{%- if cron.enabled %}
|
||||
service.running:
|
||||
- name: {{ cron.service }}
|
||||
- enable: true
|
||||
|
||||
Reference in New Issue
Block a user