📦 Parrot Security

This commit is contained in:
zenobit 2023-12-30 23:36:43 +01:00 committed by Martin Wimpress
parent 62c4c44090
commit 411d87d63e

View File

@ -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=""