main.yaml 594 B

123456789101112131415161718
  1. ---
  2. # GCE instances are starting with xfs AND barrier=1, which is only for extfs.
  3. - name: Remove barrier=1 from XFS fstab entries
  4. lineinfile:
  5. path: /etc/fstab
  6. regexp: '^(.+)xfs(.+?),?barrier=1,?(.*?)$'
  7. line: '\1xfs\2 \4'
  8. backrefs: yes
  9. - name: Ensure the root filesystem has XFS group quota turned on
  10. lineinfile:
  11. path: /boot/grub2/grub.cfg
  12. regexp: '^(.*)linux16 (.*)$'
  13. line: '\1linux16 \2 rootflags=gquota'
  14. backrefs: yes
  15. - name: Ensure the root partition grows on startup
  16. copy: src=partition.conf dest=/etc/systemd/system/google-instance-setup.service.d/