]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-8255 #resolve fix debian codename changes since jessie was released as stable
authorWilliam King <william.king@quentustech.com>
Wed, 30 Sep 2015 18:19:20 +0000 (11:19 -0700)
committerWilliam King <william.king@quentustech.com>
Wed, 30 Sep 2015 18:19:20 +0000 (11:19 -0700)
debian/util.sh

index be2a7bb00448ecce6e868139a0963c0ae9816c43..075de7cdd57ee6112ac3e9cfb1b54af4771b3511 100755 (executable)
@@ -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
 }