summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-07-01 08:26:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-07-01 08:26:14 +0000
commit733731bac240cddb316c67d84bc539ad7a1baa88 (patch)
tree3a25b0e83d741cce02bf89026536cae9d6381372
parentUpdating. (diff)
downloadprogress-linux-tools-733731bac240cddb316c67d84bc539ad7a1baa88.tar.xz
progress-linux-tools-733731bac240cddb316c67d84bc539ad7a1baa88.zip
Updating.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rwxr-xr-xbin/debian-chroot6
1 files changed, 5 insertions, 1 deletions
diff --git a/bin/debian-chroot b/bin/debian-chroot
index f36a29e..45bea1a 100755
--- a/bin/debian-chroot
+++ b/bin/debian-chroot
@@ -35,6 +35,10 @@ case "${DISTRIBUTION}" in
trixie*)
DERIVATIVE_DISTRIBUTION="horok"
;;
+
+ forky*)
+ DERIVATIVE_DISTRIBUTION="illuan"
+ ;;
esac
MIRROR="debian.ethz.ch"
@@ -55,7 +59,7 @@ case "${COMMAND}" in
create)
if [ ! -d "${CHROOT}" ]
then
- debootstrap --arch=${ARCHITECTURE} --include=progress-linux ${DISTRIBUTION} "${CHROOT}" http://${MIRROR}/debian
+ debootstrap --arch=${ARCHITECTURE} ${DISTRIBUTION} "${CHROOT}" http://${MIRROR}/debian
else
echo "${CHROOT}: file or directory already exists."
exit 1