Browse Source

ensure htpasswd file exists

Also move file mode to the file-exists check to not specify twice.
Tobias Florek 8 years ago
parent
commit
4538443750
1 changed files with 9 additions and 1 deletions
  1. 9 1
      roles/openshift_master/tasks/main.yml

+ 9 - 1
roles/openshift_master/tasks/main.yml

@@ -91,11 +91,19 @@
   template:
     dest: "{{ item.filename }}"
     src: htpasswd.j2
-    mode: 0600
     backup: yes
   when: item.kind == 'HTPasswdPasswordIdentityProvider' and openshift.master.manage_htpasswd | bool
   with_items: "{{ openshift.master.identity_providers }}"
 
+- name: Ensure htpasswd file exists
+  copy:
+    dest: "{{ item.filename }}"
+    force: no
+    content: ""
+    mode: 0600
+  when: item.kind == 'HTPasswdPasswordIdentityProvider'
+  with_items: "{{ openshift.master.identity_providers }}"
+
 - name: Create the ldap ca file if needed
   copy:
     dest: "{{ item.ca if 'ca' in item and '/' in item.ca else openshift_master_config_dir ~ '/' ~ item.ca | default('ldap_ca.crt') }}"