소스 검색

fix(apache/modules.sls): fix duplicated ID

tags/v0.38.2
Sergio Cambra 5 년 전
부모
커밋
57afd71627
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. +2
    -1
      apache/modules.sls

+ 2
- 1
apache/modules.sls 파일 보기

@@ -11,7 +11,8 @@ include:
{%- endfor %}

{% for module in salt['pillar.get']('apache:modules:enabled', []) %}
{% if module not in existing_states %}
{%- set mod_state = 'apache.mod_{}'.format(module) %}
{% if mod_state not in existing_states %}
a2enmod {{ module }}:
cmd.run:
- unless: ls /etc/apache2/mods-enabled/{{ module }}.load

Loading…
취소
저장