|
@@ -1,6 +1,6 @@
|
|
|
#!/bin/bash -e
|
|
|
#----------
|
|
|
-# Interactive installation steps for Debian Bullseye from GRML using debootstrap
|
|
|
+# Interactive installation steps for debian bookworm from GRML using debootstrap
|
|
|
|
|
|
# Design decisions
|
|
|
# - Fokus on a simple setup, primarly for VMs
|
|
@@ -20,9 +20,9 @@
|
|
|
# cp config.sh.template config.sh # copy template
|
|
|
# config-get-netconf-eth0.sh # get running grml network config
|
|
|
# vi config.sh # update installation variables
|
|
|
-# bootstrap-bullseye.sh install # start installation
|
|
|
+# bootstrap-bookworm.sh install # start installation
|
|
|
# !! Note down the admin passwords and reboot
|
|
|
-# sudo /installer/bootstrap-bullseye.sh postinstall # run postinstall in the new system
|
|
|
+# sudo /installer/bootstrap-bookworm.sh postinstall # run postinstall in the new system
|
|
|
|
|
|
# Default variables
|
|
|
mnt="/mnt/root" # mountpoint for the new root filesystem
|
|
@@ -164,7 +164,7 @@ mkdir -p $mnt/installer
|
|
|
cp $(dirname `realpath $0`)/*.sh $mnt/installer
|
|
|
|
|
|
# Run script in chroot
|
|
|
-chroot $mnt /bin/bash /installer/bootstrap-bullseye.sh install2
|
|
|
+chroot $mnt /bin/bash /installer/bootstrap-bookworm.sh install2
|
|
|
|
|
|
# Install bootloader
|
|
|
$0 bootloader
|