浏览代码

Merge pull request #49 from multani/fix-missing-documentroot

Don't fail on missing DocumentRoot
tags/v0.37.4
Forrest 9 年前
父节点
当前提交
b190357ebf
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. +3
    -1
      apache/vhosts/standard.sls

+ 3
- 1
apache/vhosts/standard.sls 查看文件

@@ -19,12 +19,14 @@ include:
- pkg: apache
- watch_in:
- module: apache-reload

{% if 'DocumentRoot' in site %}
{{ id }}-documentroot:
file.directory:
- unless: test -d {{ site.get('DocumentRoot') }}
- name: {{ site.get('DocumentRoot') }}
- makedirs: True
{% endif %}

{% if grains.os_family == 'Debian' %}
a2ensite {{ id }}{{ apache.confext }}:

正在加载...
取消
保存