summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/debian-codename-to-version.sh5
-rwxr-xr-xbin/ubuntu-codename-to-version.sh1
2 files changed, 4 insertions, 2 deletions
diff --git a/bin/debian-codename-to-version.sh b/bin/debian-codename-to-version.sh
index 8c8745c..ddc019d 100755
--- a/bin/debian-codename-to-version.sh
+++ b/bin/debian-codename-to-version.sh
@@ -47,10 +47,11 @@ case "${codename}" in
# a bit higher than the current testing version
# (which is known early in advance to the next
# upcoming release).
- ("sid"|"unstable") echo "9.01";;
+ ("sid"|"unstable") echo "10.01";;
- ("stretch"|"testing") echo "9";;
+ ("buster"|"testing") echo "10";;
+ ("stretch"|"stable") echo "9";;
("jessie") echo "8";;
("wheezy") echo "7";;
("squeeze") echo "6";;
diff --git a/bin/ubuntu-codename-to-version.sh b/bin/ubuntu-codename-to-version.sh
index d0be3ab..5abd98e 100755
--- a/bin/ubuntu-codename-to-version.sh
+++ b/bin/ubuntu-codename-to-version.sh
@@ -47,6 +47,7 @@ case "${codename}" in
# we can't really do better here.
("devel") echo "9999";;
+ ("artful") echo "17.10";;
("zesty") echo "17.04";;
("yakkety") echo "16.10";;
("xenial") echo "16.04";;