Buster release #110

Manually merged
benpro merged 10 commits from buster-support into master 2019-07-16 12:00:28 +02:00
Showing only changes of commit e7bf343048 - Show all commits

View file

@ -59,6 +59,7 @@ detect_os() {
7) DEBIAN_RELEASE="wheezy";;
8) DEBIAN_RELEASE="jessie";;
9) DEBIAN_RELEASE="stretch";;
10) DEBIAN_RELEASE="buster";;
esac
fi
elif [ "$(uname -s)" = "OpenBSD" ]; then
@ -85,6 +86,9 @@ is_debian_jessie() {
is_debian_stretch() {
test "${DEBIAN_RELEASE}" = "stretch"
}
is_debian_buster() {
test "${DEBIAN_RELEASE}" = "buster"
}
debian_release() {
printf "%s" "${DEBIAN_RELEASE}"
}