From 0b8ef9b98a3b1310239b2f3b7d3d3f9620b70da0 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Fri, 23 Jan 2026 20:05:01 -0600 Subject: Phase 1.5: Rename to archangel MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Rename install-archzfs → archangel - Rename install-archzfs.conf.example → archangel.conf.example - Update build.sh to use new names - Update script header with dual-filesystem description - Update log file names to archangel-* The installer is now called "archangel" reflecting its expanded scope: snapshot-based recovery for both ZFS and Btrfs filesystems. --- build.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'build.sh') diff --git a/build.sh b/build.sh index 58d5952..8a1b74c 100755 --- a/build.sh +++ b/build.sh @@ -368,7 +368,7 @@ EOF # Copy our custom scripts info "Copying custom scripts..." -cp "$CUSTOM_DIR/install-archzfs" "$PROFILE_DIR/airootfs/usr/local/bin/" +cp "$CUSTOM_DIR/archangel" "$PROFILE_DIR/airootfs/usr/local/bin/" cp -r "$CUSTOM_DIR/lib" "$PROFILE_DIR/airootfs/usr/local/bin/" cp "$CUSTOM_DIR/install-claude" "$PROFILE_DIR/airootfs/usr/local/bin/" cp "$CUSTOM_DIR/archsetup-zfs" "$PROFILE_DIR/airootfs/usr/local/bin/" @@ -380,7 +380,7 @@ cp "$CUSTOM_DIR/zfsrollback" "$PROFILE_DIR/airootfs/usr/local/bin/" # Copy example config for unattended installs mkdir -p "$PROFILE_DIR/airootfs/root" -cp "$CUSTOM_DIR/install-archzfs.conf.example" "$PROFILE_DIR/airootfs/root/" +cp "$CUSTOM_DIR/archangel.conf.example" "$PROFILE_DIR/airootfs/root/" # Copy rescue guide info "Copying rescue guide..." @@ -390,7 +390,7 @@ cp "$CUSTOM_DIR/RESCUE-GUIDE.txt" "$PROFILE_DIR/airootfs/root/" info "Setting file permissions..." if grep -q "file_permissions=" "$PROFILE_DIR/profiledef.sh"; then sed -i '/^file_permissions=(/,/)/ { - /)/ i\ ["/usr/local/bin/install-archzfs"]="0:0:755" + /)/ i\ ["/usr/local/bin/archangel"]="0:0:755" }' "$PROFILE_DIR/profiledef.sh" sed -i '/^file_permissions=(/,/)/ { /)/ i\ ["/usr/local/bin/install-claude"]="0:0:755" @@ -470,7 +470,7 @@ if [[ -f "$ISO_FILE" ]]; then info "After booting:" echo " - ZFS is pre-loaded (no setup needed)" echo " - SSH is enabled (root password: $LIVE_ROOT_PASSWORD)" - echo " - Run 'install-archzfs' to start installation" + echo " - Run 'archangel' to start installation" echo "" info "SSH access (from host):" echo " ssh -p 2222 root@localhost" -- cgit v1.2.3