Merge pull request #13127 from willthames/test_become
Elevate privileges when checking for file existence
This commit is contained in:
commit
5d645f3a8b
2 changed files with 12 additions and 0 deletions
|
@ -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…
Reference in a new issue