ali_khawaja

Untitled

Jun 21st, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. - name: Check retry file
  2. stat:
  3. path: autosp.status
  4. register: statusFile
  5.  
  6. - debug: var=statusFile.stat.exists
  7. when: statusFile.stat.exists
  8.  
  9. - set_fact:
  10. instanceid: item.split(':')[0]
  11. ec2create: true if (statusFile.stat.exists == True) else false
  12. with_lines: autosp.status
  13. when: statusFile.stat.exists
Advertisement
Add Comment
Please, Sign In to add comment