Browse Source

touch htpasswd file if it doesn't exist

Fixes #70
tags/v0.55.0
Arthur Lutz 8 years ago
parent
commit
7cf3af2972
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      nginx/users.sls

+ 5
- 1
nginx/users.sls View File

pkg.installed: pkg.installed:
- name: {{ nginx.apache_utils }} - name: {{ nginx.apache_utils }}


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

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


- pkg: htpasswd - pkg: htpasswd


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

Loading…
Cancel
Save