您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

17 行
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}}"