diff options
-rwxr-xr-x | bin/schroot-create.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/bin/schroot-create.sh b/bin/schroot-create.sh index 6b767750..604c3f73 100755 --- a/bin/schroot-create.sh +++ b/bin/schroot-create.sh @@ -24,6 +24,13 @@ shift DISTRO="$1" shift +if [ "$DISTRO" == "experimental" ] ; then + # experimental cannot be bootstrapped + DISTRO=sid + EXTRA_PACKAGES="deb $MIRROR experimental main" + EXTRA_SOURCES="deb-src $MIRROR experimental main" +fi + if [ "$1" == "backports" ] ; then EXTRA_PACKAGES="deb $MIRROR ${DISTRO}-backports main" EXTRA_SOURCES="deb-src $MIRROR ${DISTRO}-backports main" |