mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
24 lines
706 B
Text
24 lines
706 B
Text
# Template file for 'athenaos'
|
|
OSNAME="athenaos"
|
|
PRETTY="Athena OS"
|
|
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="-"
|
|
|
|
|
|
RELEASES="v23.11 v23.06.23"
|
|
|
|
|
|
function 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}"
|
|
}
|
|
|
|
function specific_tweaks() {
|
|
echo "disk_size=\"32G\"" >> "${CONF_FILE}"
|
|
}
|
|
|