21 lines
595 B
Plaintext
21 lines
595 B
Plaintext
# Template file for ''
|
|
OSNAME="archlinux"
|
|
PRETTY="Arch Linux"
|
|
BASEDOF="-"
|
|
HOMEPAGE="https://archlinux.org"
|
|
DESCRIPTION="Lightweight and flexible Linux® distribution that tries to Keep It Simple"
|
|
CREDENTIALS="-"
|
|
|
|
function releases_() {
|
|
echo latest
|
|
}
|
|
|
|
function get_() {
|
|
local HASH=""
|
|
local ISO=""
|
|
local URL="https://mirror.rackspace.com/archlinux"
|
|
ISO=$(web_pipe "https://archlinux.org/releng/releases/json/" | jq -r '.releases[0].iso_url')
|
|
HASH=$(web_pipe "https://archlinux.org/releng/releases/json/" | jq -r '.releases[0].sha256_sum')
|
|
echo "${URL}${ISO} ${HASH}"
|
|
}
|