mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user