mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
706 B
YAML
27 lines
706 B
YAML
6 years ago
|
- name: Test temp dir on de escalation
|
||
|
hosts: testhost
|
||
|
gather_facts: false
|
||
|
become: yes
|
||
|
tasks:
|
||
|
- name: create test user
|
||
|
user: name=tmptest state=present
|
||
|
|
||
|
- name: execute test case
|
||
|
become_user: tmptest
|
||
|
block:
|
||
|
- name: Test case from issue 41340
|
||
|
blockinfile:
|
||
|
create: yes
|
||
|
block: |
|
||
|
export foo=bar
|
||
|
marker: "# {mark} Here there be a marker"
|
||
|
dest: /tmp/testing.txt
|
||
|
mode: 0644
|
||
|
always:
|
||
|
- name: clean up file
|
||
|
file: path=/tmp/testing.txt state=absent
|
||
|
|
||
|
- name: clean up test user
|
||
|
user: name=tmptest state=absent
|
||
|
become_user: root
|