diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-07-01 08:26:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-07-01 08:26:14 +0000 |
commit | 733731bac240cddb316c67d84bc539ad7a1baa88 (patch) | |
tree | 3a25b0e83d741cce02bf89026536cae9d6381372 /bin | |
parent | Updating. (diff) | |
download | progress-linux-tools-733731bac240cddb316c67d84bc539ad7a1baa88.tar.xz progress-linux-tools-733731bac240cddb316c67d84bc539ad7a1baa88.zip |
Updating.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/debian-chroot | 6 |
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 |