summaryrefslogtreecommitdiffstats
path: root/roles/openshift_gcp_image_prep/tasks/main.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/openshift_gcp_image_prep/tasks/main.yaml')
-rw-r--r--roles/openshift_gcp_image_prep/tasks/main.yaml18
1 files changed, 0 insertions, 18 deletions
diff --git a/roles/openshift_gcp_image_prep/tasks/main.yaml b/roles/openshift_gcp_image_prep/tasks/main.yaml
deleted file mode 100644
index fee5ab618..000000000
--- a/roles/openshift_gcp_image_prep/tasks/main.yaml
+++ /dev/null
@@ -1,18 +0,0 @@
----
-# GCE instances are starting with xfs AND barrier=1, which is only for extfs.
-- name: Remove barrier=1 from XFS fstab entries
- lineinfile:
- path: /etc/fstab
- regexp: '^(.+)xfs(.+?),?barrier=1,?(.*?)$'
- line: '\1xfs\2 \4'
- backrefs: yes
-
-- name: Ensure the root filesystem has XFS group quota turned on
- lineinfile:
- path: /boot/grub2/grub.cfg
- regexp: '^(.*)linux16 (.*)$'
- line: '\1linux16 \2 rootflags=gquota'
- backrefs: yes
-
-- name: Ensure the root partition grows on startup
- copy: src=partition.conf dest=/etc/systemd/system/google-instance-setup.service.d/