It should be just <, not <= when comparing salt version.

This commit is contained in:
Aline Freitas 2015-08-14 00:36:33 -03:00
parent da1405c5e7
commit 7684d6b0a9

View File

@ -65,7 +65,7 @@ nginx_user:
- makedirs: True - makedirs: True
get-build-tools: get-build-tools:
{% if salt['pkg.version']('salt') <= '2015.8.0' and grains['os_family'] == 'RedHat' %} {% if salt['pkg.version']('salt') < '2015.8.0' and grains['os_family'] == 'RedHat' %}
module.run: module.run:
- name: pkg.group_install - name: pkg.group_install
- m_name: {{ nginx_map.group_pkg }} - m_name: {{ nginx_map.group_pkg }}