浏览代码

touch htpasswd file if it doesn't exist

Fixes #70
tags/v0.55.0
Arthur Lutz 8 年前
父节点
当前提交
7cf3af2972
共有 1 个文件被更改,包括 5 次插入1 次删除
  1. +5
    -1
      nginx/users.sls

+ 5
- 1
nginx/users.sls 查看文件

@@ -5,6 +5,10 @@ htpasswd:
pkg.installed:
- name: {{ nginx.apache_utils }}

make sure {{ htauth }} exists:
file.exists:
- name: {{ htauth }}

{% for name, user in pillar.get('users', {}).items() %}
{% if user['webauth'] is defined -%}

@@ -18,4 +22,4 @@ nginx_user_{{name}}:
- pkg: htpasswd

{% endif -%}
{% endfor %}
{% endfor %}

正在加载...
取消
保存