summaryrefslogtreecommitdiffstats
path: root/roles/ands_openshift/tasks/users.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/ands_openshift/tasks/users.yml')
-rw-r--r--roles/ands_openshift/tasks/users.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/roles/ands_openshift/tasks/users.yml b/roles/ands_openshift/tasks/users.yml
new file mode 100644
index 0000000..c816203
--- /dev/null
+++ b/roles/ands_openshift/tasks/users.yml
@@ -0,0 +1,8 @@
+---
+- name: Copy htpasswd to /etc/origin/master
+ copy: src="users/htpasswd" dest="/etc/origin/master/htpasswd" mode=0644 owner=root group=root force=yes backup=no
+ when: "'masters' in group_names"
+
+- include: users_resources.yml
+ run_once: true
+ delegate_to: "{{ groups.masters[0] }}"