main.yml 576 B

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