main.yml 454 B

1234567891011121314
  1. ---
  2. - name: Ensure growpart is installed
  3. action: "{{ ansible_pkg_mgr }} name=cloud-utils-growpart state=present"
  4. - name: Grow the partitions
  5. command: "growpart {{oep_drive}} {{oep_partition}}"
  6. - name: Expand the filesystem - xfs
  7. command: "xfs_growfs {{oep_drive}}{{oep_partition}}"
  8. when: oep_file_system == "xfs"
  9. - name: Expand the filesystem - ext(2,3,4)
  10. command: "resize2fs {{oep_drive}}{{oep_partition}}"
  11. when: oep_file_system == "ext"