aboutsummaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-01-23 20:05:01 -0600
committerCraig Jennings <c@cjennings.net>2026-01-23 20:05:01 -0600
commitf757fedf2a88760d5ddd3a815998f15572a20069 (patch)
tree08b1839949401308b6659078fa8f1ffd65078e95 /build.sh
parent53e82d802dba330ec8e5a568d6250e04f1193f0c (diff)
downloadarchangel-f757fedf2a88760d5ddd3a815998f15572a20069.tar.gz
archangel-f757fedf2a88760d5ddd3a815998f15572a20069.zip
Phase 1.5: Rename to archangel
- 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.
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh8
1 files changed, 4 insertions, 4 deletions
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"