Elevate privileges when checking for file existence

Certain OSs default to home directories as 0700
Without elevating privileges, checking for file existence
fails.
This commit is contained in:
Will Thames 2015-11-11 23:42:35 +10:00
parent b2a9111b22
commit 5bb759e7ab
2 changed files with 12 additions and 0 deletions

View file

@ -24,6 +24,8 @@
state: touch state: touch
- name: check that the path in the user's home dir was created - name: check that the path in the user's home dir was created
become: True
become_user: "{{ become_test_user }}"
stat: stat:
path: "~{{ become_test_user }}/foo.txt" path: "~{{ become_test_user }}/foo.txt"
register: results register: results
@ -41,6 +43,8 @@
dest: "~/bar.txt" dest: "~/bar.txt"
- name: check that the path in the user's home dir was created - name: check that the path in the user's home dir was created
become: True
become_user: "{{ become_test_user }}"
stat: stat:
path: "~{{ become_test_user }}/bar.txt" path: "~{{ become_test_user }}/bar.txt"
register: results register: results
@ -58,6 +62,8 @@
dest: "~/baz.txt" dest: "~/baz.txt"
- name: check that the path in the user's home dir was created - name: check that the path in the user's home dir was created
become: True
become_user: "{{ become_test_user }}"
stat: stat:
path: "~{{ become_test_user }}/baz.txt" path: "~{{ become_test_user }}/baz.txt"
register: results register: results

View file

@ -23,6 +23,8 @@
state: touch state: touch
- name: check that the path in the user's home dir was created - name: check that the path in the user's home dir was created
sudo: True
sudo_user: "{{ sudo_test_user }}"
stat: stat:
path: "~{{ sudo_test_user }}/foo.txt" path: "~{{ sudo_test_user }}/foo.txt"
register: results register: results
@ -40,6 +42,8 @@
dest: "~/bar.txt" dest: "~/bar.txt"
- name: check that the path in the user's home dir was created - name: check that the path in the user's home dir was created
sudo: True
sudo_user: "{{ sudo_test_user }}"
stat: stat:
path: "~{{ sudo_test_user }}/bar.txt" path: "~{{ sudo_test_user }}/bar.txt"
register: results register: results
@ -57,6 +61,8 @@
dest: "~/baz.txt" dest: "~/baz.txt"
- name: check that the path in the user's home dir was created - name: check that the path in the user's home dir was created
sudo: True
sudo_user: "{{ sudo_test_user }}"
stat: stat:
path: "~{{ sudo_test_user }}/baz.txt" path: "~{{ sudo_test_user }}/baz.txt"
register: results register: results