25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
373B

  1. ---
  2. - name: generate filesystem uuids
  3. local_action: command uuid -v4
  4. with_items: "{{filesystems}}"
  5. register: _filesystems_uuids
  6. changed_when: false
  7. - name: set filesystems
  8. set_fact:
  9. filesystems: "{{lookup('template','filesystems.json.j2')}}"
  10. # - debug:
  11. # msg:
  12. # _filesystems_uuids: "{{_filesystems_uuids}}"
  13. # filesystems: "{{filesystems}}"