fix: Use HTTPS URLs wherever possible
This commit is contained in:
parent
3f7bc4a77a
commit
17a5971e49
16
quickget
16
quickget
|
@ -57,7 +57,7 @@ function os_info() {
|
|||
holoiso) INFO="HoloISO|-|https://github.com/HoloISO/holoiso|Bring the Steam Decks SteamOS Holo redistribution and provide a close-to-official SteamOS experience.";;
|
||||
kali) INFO="Kali|-|https://www.kali.org/|The most advanced Penetration Testing Distribution.";;
|
||||
kdeneon) INFO="KDE Neon|-|https://neon.kde.org/|Latest and greatest of KDE community software packaged on a rock-solid base.";;
|
||||
kolibrios) INFO="KolibriOS|-|http://kolibrios.org/en/|Tiny yet incredibly powerful and fast operating system.";;
|
||||
kolibrios) INFO="KolibriOS|-|https://kolibrios.org/en/|Tiny yet incredibly powerful and fast operating system.";;
|
||||
kubuntu) INFO="Kubuntu|-|https://kubuntu.org/|Free, complete, and open-source alternative to Microsoft Windows and Mac OS X which contains everything you need to work, play, or share.";;
|
||||
linuxlite) INFO="Linux Lite|-|https://www.linuxliteos.com/|Your first simple, fast and free stop in the world of Linux.";;
|
||||
linuxmint) INFO="Linux Mint|-|https://linuxmint.com/|Designed to work out of the box and comes fully equipped with the apps most people need.";;
|
||||
|
@ -665,7 +665,7 @@ function releases_dragonflybsd() {
|
|||
# If you remove "".bz2" from the end of the searched URL, you will get only the current release - currently 6.4.0
|
||||
# We could add a variable so this behaviour is optional/switchable (maybe from option or env)
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "http://mirror-master.dragonflybsd.org/iso-images/" | grep -E -o '"dfly-x86_64-.*_REL.iso.bz2"' | grep -o -E '[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+')
|
||||
echo $(web_pipe "https://mirror-master.dragonflybsd.org/iso-images/" | grep -E -o '"dfly-x86_64-.*_REL.iso.bz2"' | grep -o -E '[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+')
|
||||
}
|
||||
|
||||
function releases_easyos() {
|
||||
|
@ -838,7 +838,7 @@ function releases_netboot() {
|
|||
function releases_netbsd() {
|
||||
# V8 is EOL so filter it out
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "http://cdn.netbsd.org/pub/NetBSD/iso/" | grep -o -E '"[[:digit:]]+\.[[:digit:]]+/"' | tr -d '"/' | grep -v ^8 | sort -nr | head -n 4)
|
||||
echo $(web_pipe "https://cdn.netbsd.org/pub/NetBSD/iso/" | grep -o -E '"[[:digit:]]+\.[[:digit:]]+/"' | tr -d '"/' | grep -v ^8 | sort -nr | head -n 4)
|
||||
}
|
||||
|
||||
function releases_nitrux() {
|
||||
|
@ -977,7 +977,7 @@ function releases_slint() {
|
|||
|
||||
function releases_slitaz() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "http://mirror.slitaz.org/iso/rolling/" | grep "class='iso'" | cut -d"'" -f4 | cut -d'-' -f3- | grep iso | cut -d'.' -f1 | sort -u)
|
||||
echo $(web_pipe "https://mirror.slitaz.org/iso/rolling/" | grep "class='iso'" | cut -d"'" -f4 | cut -d'-' -f3- | grep iso | cut -d'.' -f1 | sort -u)
|
||||
}
|
||||
|
||||
function releases_solus() {
|
||||
|
@ -1002,7 +1002,7 @@ function editions_sparkylinux() {
|
|||
else
|
||||
echo $(web_pipe "https://sparkylinux.org/download/stable/" | grep -E -o "sparkylinux-${RELEASE}-.*\.iso\"" | cut -d'-' -f4 | cut -d'.' -f1 | sort -u)
|
||||
fi
|
||||
|
||||
|
||||
}
|
||||
|
||||
function releases_spirallinux() {
|
||||
|
@ -1820,7 +1820,7 @@ function get_freebsd() {
|
|||
function get_freedos() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL="http://www.ibiblio.org/pub/micro/pc-stuff/freedos/files/distributions/${RELEASE}/official"
|
||||
local URL="https://www.ibiblio.org/pub/micro/pc-stuff/freedos/files/distributions/${RELEASE}/official"
|
||||
case ${RELEASE} in
|
||||
1.2) ISO="FD12CD.iso"
|
||||
HASH=$(web_pipe "${URL}/FD12.sha" | grep "${ISO}" | cut -d' ' -f1);;
|
||||
|
@ -2341,7 +2341,7 @@ function get_rockylinux() {
|
|||
local HASH=""
|
||||
local ISO="Rocky-${RELEASE}-x86_64-${EDITION}.iso"
|
||||
local URL=""
|
||||
URL="http://dl.rockylinux.org/vault/rocky/${RELEASE}/isos/x86_64"
|
||||
URL="https://dl.rockylinux.org/vault/rocky/${RELEASE}/isos/x86_64"
|
||||
HASH=$(web_pipe "${URL}/CHECKSUM" | grep "SHA256" | grep "${ISO})" | cut -d' ' -f4)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
@ -3375,7 +3375,7 @@ function create_config() {
|
|||
|
||||
# Use command -v command to check if quickemu is in the system's PATH and
|
||||
# fallback to checking if quickemu is in the current directory.
|
||||
function resolve_quickemu() {
|
||||
function resolve_quickemu() {
|
||||
command -v quickemu || \
|
||||
if [ -x "./quickemu" ]; then
|
||||
echo "$(pwd)/quickemu"
|
||||
|
|
Loading…
Reference in New Issue