mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
vx-linux: 5.5
This commit is contained in:
parent
1586042e34
commit
44cab4e971
1 changed files with 9 additions and 14 deletions
23
quickget
23
quickget
|
@ -699,7 +699,7 @@ function editions_void() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function releases_vxlinux() {
|
function releases_vxlinux() {
|
||||||
echo 6.1.2 6.1 5.0 4.2 4.1 4.0
|
wget -q https://github.com/VX-Linux/main/releases/latest -O- |grep -o -e 'releases/tag/[[:digit:]]\+\.[[:digit:]]\+'|head -1|cut -d/ -f3
|
||||||
}
|
}
|
||||||
|
|
||||||
function releases_windows() {
|
function releases_windows() {
|
||||||
|
@ -1822,6 +1822,14 @@ function get_void() {
|
||||||
echo "${URL}/${ISO} ${HASH}"
|
echo "${URL}/${ISO} ${HASH}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function get_vxlinux() {
|
||||||
|
local HASH=""
|
||||||
|
local ISO="vx-${RELEASE}.iso"
|
||||||
|
local URL="https://github.com/VX-Linux/main/releases/download/${RELEASE}"
|
||||||
|
|
||||||
|
HASH=$(wget -q -O- "${URL}/vx-${RELEASE}.md5" | cut -d' ' -f1)
|
||||||
|
echo "${URL}/${ISO} ${HASH}"
|
||||||
|
}
|
||||||
|
|
||||||
function get_xerolinux() {
|
function get_xerolinux() {
|
||||||
local HASH=""
|
local HASH=""
|
||||||
|
@ -1844,19 +1852,6 @@ function get_zorin() {
|
||||||
echo "${URL} ${HASH}"
|
echo "${URL} ${HASH}"
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_vxlinux() {
|
|
||||||
local HASH=""
|
|
||||||
local ISO=""
|
|
||||||
local URL="https://github.com/dessington/vx-linux/releases/download/${RELEASE}"
|
|
||||||
|
|
||||||
if [ "$RELEASE" == "4.0" ]; then
|
|
||||||
ISO="vx-linux-4.0-qt.iso"
|
|
||||||
else
|
|
||||||
ISO="vx-linux-${RELEASE}.iso"
|
|
||||||
fi
|
|
||||||
echo "${URL}/${ISO} ${HASH}"
|
|
||||||
}
|
|
||||||
|
|
||||||
function unattended_windows() {
|
function unattended_windows() {
|
||||||
cat << 'EOF' > "${1}"
|
cat << 'EOF' > "${1}"
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue