fix(init.sls): fix salt-lint errors

```bash
Examining apache/init.sls of type state
[206] Jinja variables should have spaces before and after: {{ var_name }}
apache/init.sls:15
  service.{{apache.service_state}}:

[206] Jinja variables should have spaces before and after: {{ var_name }}
apache/init.sls:30
    - cmd: {{apache.custom_reload_command|default('apachectl graceful')}}

[206] Jinja variables should have spaces before and after: {{ var_name }}
apache/init.sls:41
    - cmd: {{apache.custom_reload_command|default('apachectl graceful')}}
```
This commit is contained in:
Imran Iqbal 2019-10-17 07:47:49 +01:00
parent a146c59763
commit 8465eb47e0
No known key found for this signature in database
GPG Key ID: 6D8629439D2B7819

View File

@ -12,7 +12,7 @@ apache:
- system: True - system: True
{# By default run apache service states (unless pillar is false) #} {# By default run apache service states (unless pillar is false) #}
{% if salt['pillar.get']('apache:manage_service_states', True) %} {% if salt['pillar.get']('apache:manage_service_states', True) %}
service.{{apache.service_state}}: service.{{ apache.service_state }}:
- name: {{ apache.service }} - name: {{ apache.service }}
{% if apache.service_state in [ 'running', 'dead' ] %} {% if apache.service_state in [ 'running', 'dead' ] %}
- enable: True - enable: True
@ -27,7 +27,7 @@ apache-reload:
- m_name: {{ apache.service }} - m_name: {{ apache.service }}
{% else %} {% else %}
- name: cmd.run - name: cmd.run
- cmd: {{apache.custom_reload_command|default('apachectl graceful')}} - cmd: {{ apache.custom_reload_command|default('apachectl graceful') }}
- python_shell: True - python_shell: True
{% endif %} {% endif %}
@ -38,7 +38,7 @@ apache-restart:
- m_name: {{ apache.service }} - m_name: {{ apache.service }}
{% else %} {% else %}
- name: cmd.run - name: cmd.run
- cmd: {{apache.custom_reload_command|default('apachectl graceful')}} - cmd: {{ apache.custom_reload_command|default('apachectl graceful') }}
- python_shell: True - python_shell: True
{% endif %} {% endif %}