Elevate privileges when checking for file existence

Certain OSs default to home directories as 0700
Without elevating privileges, checking for file existence
fails.
pull/13127/head
Will Thames 9 years ago
parent b2a9111b22
commit 5bb759e7ab

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

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

Loading…
Cancel
Save