fix(quotes): remove single quotes causing issues (or unnecessary)

* Allow single quotes to be used in commands and comments, e.g.:
  - /usr/bin/salt '*' test.ping >/root/salt_test_ping
This commit is contained in:
Imran Iqbal
2019-03-31 00:58:35 +00:00
parent 01a858a23e
commit 8ee7ffa282
2 changed files with 21 additions and 21 deletions
+2 -2
View File
@@ -8,7 +8,7 @@
cron.{{ task }}:
cron.{{ task_options.type|default('present') }}:
- name: '{{ task_options.name }}'
- name: {{ task_options.name }}
{%- if 'user' in task_options %}
- user: {{ task_options.user|default('root') }}
{%- endif %}
@@ -35,7 +35,7 @@ cron.{{ task }}:
{%- endif %}
- identifier: '{{ task }}'
{%- if 'comment' in task_options %}
- comment: '{{ task_options.comment }}'
- comment: {{ task_options.comment }}
{%- endif %}
{%- endfor %}
{%- endif %}