VX-Linux
This commit is contained in:
parent
6a612bd104
commit
ba7621944d
19
quickget
19
quickget
@ -73,6 +73,7 @@ function pretty_name() {
|
|||||||
ubuntustudio) PRETTY_NAME="Ubuntu Studio";;
|
ubuntustudio) PRETTY_NAME="Ubuntu Studio";;
|
||||||
ubuntu-unity) PRETTY_NAME="Ubuntu Unity";;
|
ubuntu-unity) PRETTY_NAME="Ubuntu Unity";;
|
||||||
void) PRETTY_NAME="Void Linux";;
|
void) PRETTY_NAME="Void Linux";;
|
||||||
|
vxlinux) PRETTY_NAME="VX Linux";;
|
||||||
zorin) PRETTY_NAME="Zorin OS";;
|
zorin) PRETTY_NAME="Zorin OS";;
|
||||||
*) PRETTY_NAME="${SIMPLE_NAME^}";;
|
*) PRETTY_NAME="${SIMPLE_NAME^}";;
|
||||||
esac
|
esac
|
||||||
@ -226,6 +227,7 @@ function os_support() {
|
|||||||
ubuntustudio \
|
ubuntustudio \
|
||||||
ubuntu-unity \
|
ubuntu-unity \
|
||||||
void \
|
void \
|
||||||
|
vxlinux \
|
||||||
windows \
|
windows \
|
||||||
xubuntu \
|
xubuntu \
|
||||||
zorin
|
zorin
|
||||||
@ -644,6 +646,10 @@ function editions_void() {
|
|||||||
echo glibc musl xfce-glibc xfce-musl
|
echo glibc musl xfce-glibc xfce-musl
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function releases_vxlinux() {
|
||||||
|
echo 6.1 5.0 4.2 4.1 4.0
|
||||||
|
}
|
||||||
|
|
||||||
function releases_windows() {
|
function releases_windows() {
|
||||||
echo 8 10 11
|
echo 8 10 11
|
||||||
}
|
}
|
||||||
@ -1697,6 +1703,19 @@ 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…
Reference in New Issue
Block a user