Commit 57c77691 by Toshio Kuratomi

Add a check that tilde expansion with copy works

parent 1eb31249
testing tilde expansion with sudo
......@@ -19,6 +19,7 @@
- assert:
that:
- "results.stat.exists == True"
- "results.stat.path|dirname|basename == '{{ sudo_test_user }}'"
- name: tilde expansion honors sudo in template
sudo: True
......@@ -35,6 +36,24 @@
- assert:
that:
- "results.stat.exists == True"
- "results.stat.path|dirname|basename == '{{ sudo_test_user }}'"
- name: tilde expansion honors sudo in copy
sudo: True
sudo_user: "{{ sudo_test_user }}"
copy:
src: baz.txt
dest: "~/baz.txt"
- name: check that the path in the user's home dir was created
stat:
path: "~{{ sudo_test_user }}/baz.txt"
register: results
- assert:
that:
- "results.stat.exists == True"
- "results.stat.path|dirname|basename == '{{ sudo_test_user }}'"
- name: Remove test user and their home dir
user:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment