From: William King Date: Wed, 30 Sep 2015 18:19:20 +0000 (-0700) Subject: FS-8255 #resolve fix debian codename changes since jessie was released as stable X-Git-Tag: v1.6.3~1^2~83 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=94b1dfab18c9cc662f0b291d63b57e0dd026085d;p=thirdparty%2Ffreeswitch.git FS-8255 #resolve fix debian codename changes since jessie was released as stable --- diff --git a/debian/util.sh b/debian/util.sh index be2a7bb004..075de7cdd5 100755 --- a/debian/util.sh +++ b/debian/util.sh @@ -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 }