diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-04-15 10:27:21 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-04-15 10:27:21 +0200 |
commit | f2b3156100b118543af401b81ed485068439a34d (patch) | |
tree | d7ff24ea215e130355ac3b1f95931de69e26b0cc | |
parent | 1dbf68ddc8353aa90bd05aeafdee762ae3098795 (diff) | |
download | jenkins.debian.net-f2b3156100b118543af401b81ed485068439a34d.tar.xz |
don't add non-existing sid/updates suite to sources.list
-rwxr-xr-x | bin/schroot-create.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/schroot-create.sh b/bin/schroot-create.sh index b07c2917..7311687e 100755 --- a/bin/schroot-create.sh +++ b/bin/schroot-create.sh @@ -59,7 +59,7 @@ if [ "$SUITE" = "experimental" ] ; then SUITE=sid EXTRA_SOURCES[0]="deb $MIRROR experimental main $CONTRIB" EXTRA_SOURCES[1]="deb-src $MIRROR experimental main $CONTRIB" -elif [ "$SUITE" != "unstable" ] ; then +elif [ "$SUITE" != "unstable" ] && [ "$SUITE" != "sid" ] ; then EXTRA_SOURCES[6]="deb http://security.debian.org $SUITE/updates main $CONTRIB" EXTRA_SOURCES[7]="deb-src http://security.debian.org $SUITE/updates main $CONTRIB" fi |