main.yml 739 B

123456789101112131415161718192021
  1. ---
  2. - name: Ensure growpart is installed
  3. action: "{{ ansible_pkg_mgr }} name=cloud-utils-growpart state=present" and not is_atomic
  4. - name: Determine if growpart is installed
  5. command: "rpm -q cloud-utils-growpart"
  6. register: has_growpart
  7. failed_when: "has_growpart.cr != 0 and 'package cloud-utils-growpart is not installed' not in has_growpart.stdout"
  8. changed_when: false
  9. when: is_atomic
  10. - name: Grow the partitions
  11. command: "growpart {{oep_drive}} {{oep_partition}}"
  12. - name: Expand the filesystem - xfs
  13. command: "xfs_growfs {{oep_drive}}{{oep_partition}}"
  14. when: oep_file_system == "xfs"
  15. - name: Expand the filesystem - ext(2,3,4)
  16. command: "resize2fs {{oep_drive}}{{oep_partition}}"
  17. when: oep_file_system == "ext"