diff options
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 |