浏览代码

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

tags/v0.55.0
Aline Freitas 9 年前
父节点
当前提交
7684d6b0a9
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      nginx/source.sls

+ 1
- 1
nginx/source.sls 查看文件

@@ -65,7 +65,7 @@ nginx_user:
- makedirs: True

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:
- name: pkg.group_install
- m_name: {{ nginx_map.group_pkg }}

正在加载...
取消
保存