25 lines
901 B
Plaintext
25 lines
901 B
Plaintext
# Template file for 'kodachi'
|
|
OSNAME="kodachi"
|
|
PRETTY="Kodachi"
|
|
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"
|
|
|
|
|
|
RELEASES="latest"
|
|
|
|
|
|
function releases_() {
|
|
echo latest
|
|
}
|
|
|
|
function 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}"
|
|
}
|
|
|