diff --git a/include/osdetection b/include/osdetection index 8bd7288a..fa2046d5 100644 --- a/include/osdetection +++ b/include/osdetection @@ -412,6 +412,13 @@ OS_VERSION=$(grep "^VERSION_ID=" /etc/os-release | awk -F= '{print $2}' | tr -d '"') OS_VERSION_FULL=$(grep "^PRETTY_NAME=" /etc/os-release | awk -F= '{print $2}' | tr -d '"') ;; + "peppermint") + LINUX_VERSION="Peppermint OS" + LINUX_VERSION_LIKE="Debian" + OS_NAME="Peppermint OS" + OS_VERSION=$(grep "^PRETTY_NAME=" /etc/os-release | awk -F= '{print $2}' | tr -d '"') + OS_VERSION_FULL=$(grep "^VERSION_CODENAME=" /etc/os-release | awk -F= '{print $2}' | tr -d '"') + ;; "poky") LINUX_VERSION="Poky" OS_NAME="openembedded"