From 411d87d63e85acbfb39de0f2811099afe559f551 Mon Sep 17 00:00:00 2001 From: zenobit Date: Sat, 30 Dec 2023 23:36:43 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20Parrot=20Security?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- quickget | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/quickget b/quickget index ad3df98..ab3ce5c 100755 --- a/quickget +++ b/quickget @@ -105,6 +105,7 @@ function pretty_name() { openindiana) PRETTY_NAME="OpenIndiana";; opensuse) PRETTY_NAME="openSUSE";; oraclelinux) PRETTY_NAME="Oracle Linux";; + parrotsec) PRETTY_NAME="Parrot Security";; peppermint) PRETTY_NAME="PeppermintOS";; popos) PRETTY_NAME="Pop!_OS";; reactos) PRETTY_NAME="ReactOS";; @@ -278,6 +279,7 @@ function os_support() { opensuse \ oraclelinux \ peppermint \ + parrotsec \ popos \ porteus \ reactos \ @@ -373,6 +375,7 @@ function os_homepages(){ openindiana) HOMEPAGE="https://www.openindiana.org/";; opensuse) HOMEPAGE="https://www.opensuse.org/";; oraclelinux) HOMEPAGE="https://www.oracle.com/linux/";; + parrotsec) HOMEPAGE="https://www.parrotsec.org/";; peppermint) HOMEPAGE="https://peppermintos.com/";; popos) HOMEPAGE="https://pop.system76.com/";; porteus) HOMEPAGE="http://www.porteus.org/";; @@ -799,6 +802,14 @@ function releases_oraclelinux() { echo 7.7 7.8 7.9 8.4 8.5 8.6 9.0 } +function releases_parrotsec() { + echo 6.0 5.0 4.11.3 +} + +function editions_parrotsec() { + echo architect home htb security +} + function releases_peppermint() { echo latest } @@ -2219,6 +2230,18 @@ function get_oraclelinux() { echo "${URL}/${ISO} ${HASH}" } +function get_parrotsec() { + local EDITION="${1:-}" + local HASH="" + local ISO="" + local URL="" + + ISO="Parrot-${EDITION}-${RELEASE}_amd64.iso" + URL="https://download.parrot.sh/parrot/iso/${RELEASE}" + HASH="$(wget -q -O- ${URL}/signed-hashes.txt | grep ${ISO} | cut -d' ' -f1)" + echo "${URL}/${ISO}" "${HASH}" +} + function get_peppermint() { local EDITION="${1:-}" local HASH=""