FS-8255 #resolve fix debian codename changes since jessie was released as stable

This commit is contained in:
William King 2015-09-30 11:19:20 -07:00
parent 47902dd8ac
commit 94b1dfab18
1 changed files with 6 additions and 6 deletions

12
debian/util.sh vendored
View File

@ -46,9 +46,9 @@ find_distro () {
case "$1" in
experimental) echo "sid";;
unstable) echo "sid";;
testing) echo "jessie";;
stable) echo "wheezy";;
oldstable) echo "squeeze";;
testing) echo "stretch";;
stable) echo "jessie";;
oldstable) echo "wheezy";;
*) echo "$1";;
esac
}
@ -56,9 +56,9 @@ find_distro () {
find_suite () {
case "$1" in
sid) echo "unstable";;
jessie) echo "testing";;
wheezy) echo "stable";;
squeeze) echo "oldstable";;
stretch) echo "testing";;
jessie) echo "stable";;
wheezy) echo "oldstable";;
*) echo "$1";;
esac
}