mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 09:32:21 +00:00
36 lines
1 KiB
Text
36 lines
1 KiB
Text
# Template file for 'athenaos'
|
|
OSNAME="athenaos"
|
|
PRETTY="Athena OS"
|
|
LOGO=""
|
|
ICON="athenaos.svg"
|
|
ICON_ONLINE="https://distrowatch.com/images/yvzhuwbpy/athena.png"
|
|
CATEGORY="Desktop, Forensics, Security"
|
|
BASEDOF="Arch"
|
|
DESCRIPTION="Offer a different experience than the most used pentesting distributions by providing only tools that fit with the user needs and improving the access to hacking resources and learning materials"
|
|
HOMEPAGE="https://athenaos.org"
|
|
CREDENTIALS="-"
|
|
GPG=""
|
|
RSS=""
|
|
DW=""
|
|
MAGNET=""
|
|
CHAT=""
|
|
|
|
RELEASES="v23.11 v23.06.23"
|
|
QEMU_ARCH="amd64"
|
|
|
|
releases_() {
|
|
#shellcheck disable=SC2046,SC2005
|
|
echo $(web_pipe "https://api.github.com/repos/Athena-OS/athena/releases" | grep 'download_url' | grep rolling | cut -d'/' -f8 | sort -u)
|
|
}
|
|
|
|
get_() {
|
|
local HASH=""
|
|
local URL="https://github.com/Athena-OS/athena/releases/download/${RELEASE}"
|
|
local ISO="athena-rolling-x86_64.iso"
|
|
HASH=$(web_pipe "${URL}/${ISO}.sha256" | cut -d' ' -f1)
|
|
echo "${URL}/${ISO} ${HASH}"
|
|
}
|
|
|
|
config_() {
|
|
echo "disk_size=\"32G\"" >> "${CONF_FILE}"
|
|
}
|