From ae110e4fda0b4614f899f7ca32875b44a8d103ec Mon Sep 17 00:00:00 2001 From: Gregory Ballantine Date: Sun, 21 Apr 2024 12:30:20 -0400 Subject: [PATCH] Renamed post-install scripts to more accurately define when they're to be run --- Almalinux-9/almalinux-9.pkr.hcl | 2 +- Debian-12/debian-12.pkr.hcl | 2 +- FreeBSD-14/freebsd-14.pkr.hcl | 2 +- Rocky-9/rocky-9.pkr.hcl | 2 +- Ubuntu-22/ubuntu-22.pkr.hcl | 2 +- scripts/{debian-setup.sh => debian-install.sh} | 0 scripts/{freebsd-setup.sh => freebsd-install.sh} | 0 scripts/{rhel-setup.sh => rhel-install.sh} | 0 8 files changed, 5 insertions(+), 5 deletions(-) rename scripts/{debian-setup.sh => debian-install.sh} (100%) rename scripts/{freebsd-setup.sh => freebsd-install.sh} (100%) rename scripts/{rhel-setup.sh => rhel-install.sh} (100%) diff --git a/Almalinux-9/almalinux-9.pkr.hcl b/Almalinux-9/almalinux-9.pkr.hcl index e21d633..f339f4e 100644 --- a/Almalinux-9/almalinux-9.pkr.hcl +++ b/Almalinux-9/almalinux-9.pkr.hcl @@ -58,6 +58,6 @@ build { sources = ["source.proxmox-iso.almalinux-9"] provisioner "shell" { - script = "scripts/rhel-setup.sh" + script = "scripts/rhel-install.sh" } } diff --git a/Debian-12/debian-12.pkr.hcl b/Debian-12/debian-12.pkr.hcl index 34ca913..be45fe3 100644 --- a/Debian-12/debian-12.pkr.hcl +++ b/Debian-12/debian-12.pkr.hcl @@ -58,6 +58,6 @@ build { sources = ["source.proxmox-iso.debian-12"] provisioner "shell" { - script = "scripts/debian-setup.sh" + script = "scripts/debian-install.sh" } } diff --git a/FreeBSD-14/freebsd-14.pkr.hcl b/FreeBSD-14/freebsd-14.pkr.hcl index 6a112a7..9a6ca98 100644 --- a/FreeBSD-14/freebsd-14.pkr.hcl +++ b/FreeBSD-14/freebsd-14.pkr.hcl @@ -54,6 +54,6 @@ build { sources = ["source.proxmox-iso.freebsd-14"] provisioner "shell" { - script = "scripts/freebsd-setup.sh" + script = "scripts/freebsd-install.sh" } } diff --git a/Rocky-9/rocky-9.pkr.hcl b/Rocky-9/rocky-9.pkr.hcl index 44169bd..85f38d0 100644 --- a/Rocky-9/rocky-9.pkr.hcl +++ b/Rocky-9/rocky-9.pkr.hcl @@ -58,6 +58,6 @@ build { sources = ["source.proxmox-iso.rocky-9"] provisioner "shell" { - script = "scripts/rhel-setup.sh" + script = "scripts/rhel-install.sh" } } diff --git a/Ubuntu-22/ubuntu-22.pkr.hcl b/Ubuntu-22/ubuntu-22.pkr.hcl index 26bf2d6..b80fc73 100644 --- a/Ubuntu-22/ubuntu-22.pkr.hcl +++ b/Ubuntu-22/ubuntu-22.pkr.hcl @@ -72,6 +72,6 @@ build { sources = ["source.proxmox-iso.ubuntu-22"] provisioner "shell" { - script = "scripts/debian-setup.sh" + script = "scripts/debian-install.sh" } } diff --git a/scripts/debian-setup.sh b/scripts/debian-install.sh similarity index 100% rename from scripts/debian-setup.sh rename to scripts/debian-install.sh diff --git a/scripts/freebsd-setup.sh b/scripts/freebsd-install.sh similarity index 100% rename from scripts/freebsd-setup.sh rename to scripts/freebsd-install.sh diff --git a/scripts/rhel-setup.sh b/scripts/rhel-install.sh similarity index 100% rename from scripts/rhel-setup.sh rename to scripts/rhel-install.sh