diff options
author | Daniel Baumann <daniel@debian.org> | 2013-01-02 11:03:44 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2013-01-02 11:05:17 +0100 |
commit | d2940edc0fbd350358fac91733e6ba53ac51d5fb (patch) | |
tree | 8b33d4b8c8b91a1527c3192b2c7c5a9f67184f80 | |
parent | e8fd91ee05355ecf45a9d400a0c2870a1ac12f61 (diff) | |
download | vyos-live-build-d2940edc0fbd350358fac91733e6ba53ac51d5fb.tar.gz vyos-live-build-d2940edc0fbd350358fac91733e6ba53ac51d5fb.zip |
Dropping stable and unstable dist symlinks for d-i in dists for wheezy.
-rwxr-xr-x | scripts/build/binary_debian-installer | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/scripts/build/binary_debian-installer b/scripts/build/binary_debian-installer index 0e11a2358..78e7f5abf 100755 --- a/scripts/build/binary_debian-installer +++ b/scripts/build/binary_debian-installer @@ -813,7 +813,16 @@ 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 |