From c8f4c89d6bd055761b37e92df7c31af9ac97718a Mon Sep 17 00:00:00 2001 From: tteckster Date: Sun, 28 Nov 2021 01:29:33 -0500 Subject: [PATCH] Update and rename pve7_ha_container.sh to ha_container.sh --- pve7_ha_container.sh => ha_container.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename pve7_ha_container.sh => ha_container.sh (96%) diff --git a/pve7_ha_container.sh b/ha_container.sh similarity index 96% rename from pve7_ha_container.sh rename to ha_container.sh index d705c9a9..0a15609c 100644 --- a/pve7_ha_container.sh +++ b/ha_container.sh @@ -74,7 +74,7 @@ TEMP_DIR=$(mktemp -d) pushd $TEMP_DIR >/dev/null # Download setup script -wget -qL https://raw.githubusercontent.com/tteck/Proxmox/main/pve7_ha_setup.sh +wget -qL https://raw.githubusercontent.com/tteck/Proxmox/main/ha_setup.sh # Detect modules and automatically load at boot load_module overlay @@ -172,8 +172,8 @@ pct unmount $CTID && unset MOUNT # Setup container msg "Starting LXC container..." pct start $CTID -pct push $CTID pve7_ha_setup.sh /pve7_ha_setup.sh -perms 755 -pct exec $CTID /pve7_ha_setup.sh +pct push $CTID ha_setup.sh /ha_setup.sh -perms 755 +pct exec $CTID /ha_setup.sh # Get network details and show completion message IP=$(pct exec $CTID ip a s dev eth0 | sed -n '/inet / s/\// /p' | awk '{print $2}')