Advertisement
Guest User

Untitled

a guest
Jan 29th, 2020
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.29 KB | None | 0 0
  1. - hosts: localhost
  2.   gather_facts: no
  3.   become: True
  4.   tasks:
  5.     - name: get
  6.       local_action: command cat ./data.txt
  7.       register: data
  8.  
  9.     - set_fact: myvar="{{ data.stdout_lines | parse_show_platform('    ', 0, 3) }}"
  10.  
  11.     - debug: var="{{item}}"
  12.       with_items: myvar
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement