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.
20 lines
463 B
YAML
20 lines
463 B
YAML
12 years ago
|
---
|
||
|
# Test iterating over lines of stdout stored in a register.
|
||
|
- hosts: localhost
|
||
|
vars:
|
||
|
small_file: /etc/resolv.conf
|
||
|
temp_file: /tmp/ansible_result_list.tmp
|
||
|
|
||
|
tasks:
|
||
|
- action: command cat $small_file
|
||
|
register: result
|
||
|
|
||
|
- action: file dest=$temp_file state=absent
|
||
|
|
||
|
- action: shell echo '$item' >> $temp_file
|
||
|
with_items: ${result.stdout_lines}
|
||
|
|
||
|
- action: command diff $small_file $temp_file
|
||
|
|
||
|
- action: file dest=$temp_file state=absent
|