From 1b231a09a9a9434f8cc9036cfeb2e82cff467d5d Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Mon, 15 Apr 2024 16:40:22 +0200 Subject: [PATCH] fix: add min swapfile to avoid bootstrap issues (#7) Reviewed-on: https://gitea.rknet.org/infra/packer-hcloud/pulls/7 Co-authored-by: Robert Kaussow Co-committed-by: Robert Kaussow --- rocky-9/data/init.ks.pkrtpl.hcl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/rocky-9/data/init.ks.pkrtpl.hcl b/rocky-9/data/init.ks.pkrtpl.hcl index b769c5f..c9fa10b 100644 --- a/rocky-9/data/init.ks.pkrtpl.hcl +++ b/rocky-9/data/init.ks.pkrtpl.hcl @@ -128,6 +128,11 @@ grubby ### Post-installation commands. %post +dd if=/dev/zero of=/swapfile bs=1M count=1000 +chmod 600 /swapfile +mkswap /swapfile +echo '/swapfile none swap sw 0 0' | tee -a /etc/fstab + dnf makecache dnf install -y epel-release dnf makecache