From 7b9b7549a7bb8e766f3b2e4684fede635fd8c406 Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Fri, 13 Oct 2017 13:46:17 +0200 Subject: [PATCH] library/roles/apache/tasks/apache-basic-auth.yml: Fix the task that creates the htpasswd file. --- apache/tasks/apache-basic-auth.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/apache/tasks/apache-basic-auth.yml b/apache/tasks/apache-basic-auth.yml index 89ea71a..a737282 100644 --- a/apache/tasks/apache-basic-auth.yml +++ b/apache/tasks/apache-basic-auth.yml @@ -19,20 +19,19 @@ - apache - apache_basic_auth -- name: Create the basic auth file +- name: Create the basic auth file when it is unique to all the virtualhosts htpasswd: path={{ apache_basic_auth_file }} name={{ item.username }} password={{ item.password }} create=yes state={{ item.state }} when: apache_basic_users is defined and apache_basic_auth_single_file + with_items: '{{ apache_basic_users }}' tags: - apache - apache_basic_auth - ignore_errors: True -- name: Create the basic auth file +- name: Create the basic auth files htpasswd: path={{ item.auth_file }} name={{ item.username }} password={{ item.password }} create=yes state={{ item.state }} with_items: '{{ apache_basic_users | default([]) }}' when: apache_basic_users is defined and not apache_basic_auth_single_file tags: - apache - apache_basic_auth - ignore_errors: True