diff options
author | Daniel Baumann <daniel@debian.org> | 2013-01-02 11:03:44 +0100 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2013-05-06 14:50:04 +0200 |
commit | d878fa2947b1127867eaf81381df5e46a3f48227 (patch) | |
tree | 20bbedc7035b617710d8eca6682066c98cf1f12a /scripts/build/binary_debian-installer | |
parent | e3289119c2fa576e8276584232d4d1d3b3bda3f7 (diff) | |
download | vyos-live-build-d878fa2947b1127867eaf81381df5e46a3f48227.tar.gz vyos-live-build-d878fa2947b1127867eaf81381df5e46a3f48227.zip |
Dropping stable and unstable dist symlinks for d-i in dists for wheezy.
Diffstat (limited to 'scripts/build/binary_debian-installer')
-rwxr-xr-x | scripts/build/binary_debian-installer | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/scripts/build/binary_debian-installer b/scripts/build/binary_debian-installer index a84c521c3..6c448686a 100755 --- a/scripts/build/binary_debian-installer +++ b/scripts/build/binary_debian-installer @@ -762,7 +762,15 @@ EOF rm -f chroot/binary.sh mv chroot/root/binary ./ - DISTRIBUTIONS="stable testing unstable" + case "${LB_PARENT_DISTRIBUTION}" in + wheezy) + DISTRIBUTIONS="testing" + ;; + + *) + DISTRIBUTIONS="stable testing unstable" + ;; + esac if [ "${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION}" != "${LB_PARENT_DISTRIBUTION}" ] then |