summaryrefslogtreecommitdiff
path: root/scripts/testing/create-base-vm.sh
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-02-27 10:51:03 -0600
committerCraig Jennings <c@cjennings.net>2026-02-27 10:51:03 -0600
commit53ea56ccb050b4a72f7919e8ee6b9146cc816251 (patch)
tree30d179abdcf75f1d454fc86e4447ea0589c7b93a /scripts/testing/create-base-vm.sh
parent534826f7f32352c8d9de841e9e07cd63e8acf711 (diff)
feat(archsetup): add rustup, log-cleanup cron, update configsHEADmain
Add rustup toolchain manager to developer_workstation (before AUR packages that need rust to compile). Add log-cleanup cron job with test validation. Update ISO glob for archangel naming. Add dunst icon theme, hyprlock animations, waybar log filtering.
Diffstat (limited to 'scripts/testing/create-base-vm.sh')
-rwxr-xr-xscripts/testing/create-base-vm.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/testing/create-base-vm.sh b/scripts/testing/create-base-vm.sh
index 9aa785b..11c40a7 100755
--- a/scripts/testing/create-base-vm.sh
+++ b/scripts/testing/create-base-vm.sh
@@ -43,10 +43,10 @@ if [ ! -f "$CONFIG_FILE" ]; then
fi
# Find archangel ISO in vm-images/
-ISO_PATH=$(find "$VM_IMAGES_DIR" -maxdepth 1 -name "archzfs-*.iso" -type f 2>/dev/null | sort -V | tail -1)
+ISO_PATH=$(find "$VM_IMAGES_DIR" -maxdepth 1 -name "archangel-*.iso" -type f 2>/dev/null | sort -V | tail -1)
if [ -z "$ISO_PATH" ]; then
fatal "No archangel ISO found in $VM_IMAGES_DIR/"
- info "Copy an archzfs-*.iso file to: $VM_IMAGES_DIR/"
+ info "Copy an archangel-*.iso file to: $VM_IMAGES_DIR/"
fi
info "Using ISO: $(basename "$ISO_PATH")"