From 7512417394946b2084f7dc8bc7a5f8adfa30bdfc Mon Sep 17 00:00:00 2001 From: Molly Lau Date: Tue, 26 Sep 2023 22:15:21 +0900 Subject: [PATCH] Update dhcp_interfaces.cfg --- Linux_reinstall/RedHat/CloudInit/dhcp_interfaces.cfg | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Linux_reinstall/RedHat/CloudInit/dhcp_interfaces.cfg b/Linux_reinstall/RedHat/CloudInit/dhcp_interfaces.cfg index 434ea6f..f45f985 100644 --- a/Linux_reinstall/RedHat/CloudInit/dhcp_interfaces.cfg +++ b/Linux_reinstall/RedHat/CloudInit/dhcp_interfaces.cfg @@ -53,11 +53,17 @@ runcmd: - systemctl stop kdump - systemctl disable kdump - hostnamectl set-hostname HostName + - fallocate -l 512M /swapspace + - chmod 600 /swapspace + - mkswap /swapspace + - swapon /swapspace + - echo '/swapspace none swap sw 0 0' >> /etc/fstab - yum install dnf epel-release -y - dnf install curl dnsutils fail2ban file lrzsz net-tools vim wget -y - sed -i '/^\[Definition\]/a allowipv6 = auto' /etc/fail2ban/fail2ban.conf - sed -ri 's/^backend = auto/backend = systemd/g' /etc/fail2ban/jail.conf - systemctl enable fail2ban - systemctl restart fail2ban + - grub2-mkconfig - rm -rf /etc/cloud/cloud.cfg.d/99-fake_cloud.cfg - touch /etc/cloud/cloud-init.disabled