From fa69256f459ee55571c6ac2bb4f4e2ba3ec38665 Mon Sep 17 00:00:00 2001 From: Michael Boelen Date: Sat, 26 Dec 2020 15:36:36 +0100 Subject: Added support for Parrot GNU/Linux --- include/osdetection | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/osdetection b/include/osdetection index 1596ed10..2d706428 100644 --- a/include/osdetection +++ b/include/osdetection @@ -270,6 +270,12 @@ OS_VERSION=$(grep "^VERSION_ID=" /etc/os-release | awk -F= '{print $2}' | tr -d '"') OS_NAME="openSUSE" ;; + "parrot") + LINUX_VERSION="Parrot" + OS_NAME="Parrot GNU/Linux" + 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 '"') + ;; "pop") LINUX_VERSION="Pop!_OS" OS_VERSION=$(grep "^VERSION_ID=" /etc/os-release | awk -F= '{print $2}' | tr -d '"') -- cgit v1.2.3