소스 검색

fix(server-status): manage module in debian

tags/v0.41.1
Javier Bértoli 4 년 전
부모
커밋
eafa4196d9
1개의 변경된 파일22개의 추가작업 그리고 0개의 파일을 삭제
  1. +22
    -0
      apache/server_status.sls

+ 22
- 0
apache/server_status.sls 파일 보기

@@ -18,3 +18,25 @@ include:
- module: apache-restart
- module: apache-reload
- service: apache

{% if grains['os_family']=="Debian" %}
a2endisconf server-status:
cmd.run:
{% if apache.get('server_status_require') is defined %}
- name: a2enconf server-status
- unless: test -L /etc/apache2/conf-enabled/server-status.conf
{% else %}
- name: a2disconf server-status
- onlyif: test -L /etc/apache2/conf-enabled/server-status.conf
{% endif %}
- order: 225
- require:
- pkg: apache
- file: {{ apache.confdir }}/server-status.conf
- watch_in:
- module: apache-restart
- require_in:
- module: apache-restart
- module: apache-reload
- service: apache
{% endif %}

Loading…
취소
저장