From 40181b051df6d31336f5f3be1d9ff2dc3237401b Mon Sep 17 00:00:00 2001 From: apo-mak Date: Sat, 4 Oct 2025 22:51:58 +0300 Subject: [PATCH 1/2] Change debootstrap target from unstable to bookworm Fix: https://github.com/unifi-utilities/unifios-utilities/issues/667 ref: https://github.com/unifi-utilities/unifios-utilities/pull/669 --- nspawn-container/interactive_setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nspawn-container/interactive_setup.sh b/nspawn-container/interactive_setup.sh index 0c405497..fac2fbc2 100644 --- a/nspawn-container/interactive_setup.sh +++ b/nspawn-container/interactive_setup.sh @@ -108,7 +108,7 @@ apt -y install systemd-container debootstrap echo "Creating container required directories" mkdir -p /data/custom/machines cd /data/custom/machines -debootstrap --include=systemd,dbus unstable "$container_name" +debootstrap --include=systemd,dbus bookworm "$container_name" ### Finally, let's bring up a shell on this container echo "Set container Root password, Network setting and enable systemd-networkd" From 366a59fdc7b51783de850dac263cce236e3fb474 Mon Sep 17 00:00:00 2001 From: apo-mak Date: Fri, 10 Oct 2025 03:31:02 +0300 Subject: [PATCH 2/2] Update nspawn-container/interactive_setup.sh Co-authored-by: Braeden --- nspawn-container/interactive_setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nspawn-container/interactive_setup.sh b/nspawn-container/interactive_setup.sh index fac2fbc2..b8507c03 100644 --- a/nspawn-container/interactive_setup.sh +++ b/nspawn-container/interactive_setup.sh @@ -108,7 +108,7 @@ apt -y install systemd-container debootstrap echo "Creating container required directories" mkdir -p /data/custom/machines cd /data/custom/machines -debootstrap --include=systemd,dbus bookworm "$container_name" +debootstrap --include=systemd,dbus bookworm "$container_name" ### Finally, let's bring up a shell on this container echo "Set container Root password, Network setting and enable systemd-networkd"