diff options
author | Thomas Wiest <twiest@users.noreply.github.com> | 2015-04-29 16:18:50 -0400 |
---|---|---|
committer | Thomas Wiest <twiest@users.noreply.github.com> | 2015-04-29 16:18:50 -0400 |
commit | 935da07e94b27ad1eb6c9085d3d182c9e0bc9b0d (patch) | |
tree | 0a0598f1827dc711dd1c4d38096fab780ba88a75 /roles | |
parent | 9a6981f624e0aabc6ffaa06e9835a5a474098295 (diff) | |
parent | 75cc97d6bf45cd14a8d0017beb88dbbadb6dcd0e (diff) | |
download | openshift-935da07e94b27ad1eb6c9085d3d182c9e0bc9b0d.tar.gz openshift-935da07e94b27ad1eb6c9085d3d182c9e0bc9b0d.tar.bz2 openshift-935da07e94b27ad1eb6c9085d3d182c9e0bc9b0d.tar.xz openshift-935da07e94b27ad1eb6c9085d3d182c9e0bc9b0d.zip |
Merge pull request #191 from detiber/vagrantFile
Add vagrantfile and minor bugfixes
Diffstat (limited to 'roles')
-rw-r--r-- | roles/openshift_master/tasks/main.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/roles/openshift_master/tasks/main.yml b/roles/openshift_master/tasks/main.yml index 28bdda618..f9e6199a5 100644 --- a/roles/openshift_master/tasks/main.yml +++ b/roles/openshift_master/tasks/main.yml @@ -104,3 +104,14 @@ with_items: - root - "{{ ansible_ssh_user }}" + +- name: Update the permissions on the OpenShift client config(s) + file: + path: "~{{ item }}/.config/openshift/.config" + state: file + mode: 0700 + owner: "{{ item }}" + group: "{{ item }}" + with_items: + - root + - "{{ ansible_ssh_user }}" |