Skip to content
Snippets Groups Projects
Commit facdede4 authored by Henrik Triem's avatar Henrik Triem
Browse files

Change deb OS version naming conventions

Instead of using the codename, this uses the actual OS name plus the version.
parent f37dcd39
No related branches found
No related tags found
1 merge request!7Change deb OS version naming conventions
Pipeline #26598 passed
......@@ -30,7 +30,8 @@ detect_os() {
detect_dist() {
if [ -f /etc/lsb-release ]; then
dist=$(awk -F= '/^DISTRIB_CODENAME=/ {print $2}' /etc/lsb-release)
dist=$(awk -F= '/^DISTRIB_ID=/ {print tolower($2)}' /etc/lsb-release)
dist+=$(awk -F= '/^DISTRIB_RELEASE=/ {print $2}' /etc/lsb-release | sed 's/[^0-9]//g')
if [ -z "$dist" ]; then
echo "Could not detect dist (DISTRIB_CODENAME) from /etc/lsb-release" >&2
......@@ -39,7 +40,8 @@ detect_dist() {
echo "$dist"
elif grep -q VERSION /etc/os-release; then
dist=$(awk -F"[)(]+" '/^VERSION=/ {print $2}' /etc/os-release)
dist=$(awk -F= '/^ID=/ {print $2}' /etc/os-release)
dist+=$(awk -F= '/^VERSION_ID=/ {print $2}' /etc/os-release | sed 's/[^0-9]//g')
if [ -z "$dist" ]; then
echo "Could not detect dist (VERSION name) from /etc/os-release" >&2
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment