mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 09:32:21 +00:00
31 lines
998 B
Text
31 lines
998 B
Text
# Template file for 'kodachi'
|
|
OSNAME="kodachi"
|
|
PRETTY="Kodachi"
|
|
LOGO=""
|
|
ICON="kodachi.svg"
|
|
ICON_ONLINE=""
|
|
CATEGORY="advanced"
|
|
BASEDOF="Ubuntu"
|
|
DESCRIPTION="Provide you with a secure, anti forensic, and anonymous operating system considering all features that a person who is concerned about privacy would need to have in order to be secure"
|
|
HOMEPAGE="https://www.digi77.com/linux-kodachi/"
|
|
CREDENTIALS="kodachi:r@@t00,root:r@@t00"
|
|
GPG=""
|
|
RSS=""
|
|
DW=""
|
|
MAGNET=""
|
|
CHAT=""
|
|
|
|
RELEASES="latest"
|
|
QEMU_ARCH="amd64"
|
|
|
|
releases_() {
|
|
echo latest
|
|
}
|
|
|
|
get_() {
|
|
local HASH=""
|
|
local ISO=$(web_pipe "https://sourceforge.net/projects/linuxkodachi/rss?path=/" | grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep '\.iso' | head -1)
|
|
local HASH=$(web_pipe "https://sourceforge.net/projects/linuxkodachi/rss?path=/" | grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep "${ISO}\.sig" | cut -d' ' -f1)
|
|
local URL="https://sourceforge.net/projects/linuxkodachi/files"
|
|
echo "${URL}${ISO} ${HASH}"
|
|
}
|