summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-06-23 16:08:20 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-06-23 16:08:20 +0200
commit874f6a94bb8998b8dbdfa0a9908050b3aff6036a (patch)
tree495c5f7cc9a0cfe8c41418adcf720452835d56d5
parent66508985dd6049445d7a340c2dc22e7fa41cd367 (diff)
downloadbuildscripts-874f6a94bb8998b8dbdfa0a9908050b3aff6036a.tar.gz
buildscripts-874f6a94bb8998b8dbdfa0a9908050b3aff6036a.tar.bz2
buildscripts-874f6a94bb8998b8dbdfa0a9908050b3aff6036a.zip
update ubuntu-codename-to-version.sh and debian-codename-to-version.sh. Let them know about Debian buster and Ubuntu artful.
-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";;