fix(map.jinja): fix salt-lint errors

```bash
Examining nginx/map.jinja of type state
[202] Jinja statement should have spaces before and after: {% statement %}
nginx/map.jinja:175
})%}

[202] Jinja statement should have spaces before and after: {% statement %}
nginx/map.jinja:181
})%}

[202] Jinja statement should have spaces before and after: {% statement %}
nginx/map.jinja:188
})%}

[202] Jinja statement should have spaces before and after: {% statement %}
nginx/map.jinja:192
    })%}

[202] Jinja statement should have spaces before and after: {% statement %}
nginx/map.jinja:195
    })%}
```
This commit is contained in:
Imran Iqbal 2019-10-09 14:42:26 +01:00
parent bedc1b6c90
commit 0772d8a8d0
No known key found for this signature in database
GPG Key ID: 6D8629439D2B7819

View File

@ -172,26 +172,26 @@
{% if 'user' not in nginx.server.config %} {% if 'user' not in nginx.server.config %}
{% do nginx.server.config.update({ {% do nginx.server.config.update({
'user': nginx.lookup.webuser, 'user': nginx.lookup.webuser,
})%} }) %}
{% endif %} {% endif %}
{% if 'pid' not in nginx.server.config and 'pid_file' in nginx.lookup %} {% if 'pid' not in nginx.server.config and 'pid_file' in nginx.lookup %}
{% do nginx.server.config.update({ {% do nginx.server.config.update({
'pid': nginx.lookup.pid_file, 'pid': nginx.lookup.pid_file,
})%} }) %}
{% endif %} {% endif %}
{% if salt['grains.get']('os_family') == 'RedHat' %} {% if salt['grains.get']('os_family') == 'RedHat' %}
{% do nginx.passenger.update({ {% do nginx.passenger.update({
'passenger_root': '/usr/share/ruby/vendor_ruby/phusion_passenger/locations.ini', 'passenger_root': '/usr/share/ruby/vendor_ruby/phusion_passenger/locations.ini',
'passenger_instance_registry_dir': '/var/run/passenger-instreg', 'passenger_instance_registry_dir': '/var/run/passenger-instreg',
})%} }) %}
{% if 'osfinger' in grains and salt['grains.get']('osfinger') == 'CentOS-6' %} {% if 'osfinger' in grains and salt['grains.get']('osfinger') == 'CentOS-6' %}
{% do nginx.server.config.update({ {% do nginx.server.config.update({
'pid': '/var/run/nginx.pid', 'pid': '/var/run/nginx.pid',
})%} }) %}
{% do nginx.passenger.update({ {% do nginx.passenger.update({
'passenger_root': '/usr/lib/ruby/1.8/phusion_passenger/locations.ini', 'passenger_root': '/usr/lib/ruby/1.8/phusion_passenger/locations.ini',
})%} }) %}
{% endif %} {% endif %}
{% endif %} {% endif %}