Move config to..
This commit is contained in:
parent
8d96e14b2c
commit
4571228b26
|
|
@ -18,3 +18,7 @@ function get_() {
|
||||||
HASH=$(web_pipe "${URL}/${ISO}.md5" | cut -d' ' -f1)
|
HASH=$(web_pipe "${URL}/${ISO}.md5" | cut -d' ' -f1)
|
||||||
echo "${URL}/${ISO} ${HASH}"
|
echo "${URL}/${ISO} ${HASH}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function specific_tweaks() {
|
||||||
|
echo "boot=\"legacy\"" >> "${CONF_FILE}"
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -29,3 +29,7 @@ function get_() {
|
||||||
HASH=$(web_pipe "${URL}/md5.txt" | grep '64bit-' | cut -d' ' -f1 | tail -n1)
|
HASH=$(web_pipe "${URL}/md5.txt" | grep '64bit-' | cut -d' ' -f1 | tail -n1)
|
||||||
echo "${URL}/${ISO} ${HASH}"
|
echo "${URL}/${ISO} ${HASH}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function specific_tweaks() {
|
||||||
|
echo "boot=\"legacy\"" >> "${CONF_FILE}"
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -19,3 +19,7 @@ function get_() {
|
||||||
HASH=$(echo "${JSON}" | jq -r '.installations[0]."installation-paths"[]|select(.type=="iso")|."target-files"[0].sha256')
|
HASH=$(echo "${JSON}" | jq -r '.installations[0]."installation-paths"[]|select(.type=="iso")|."target-files"[0].sha256')
|
||||||
echo "${URL} ${HASH}"
|
echo "${URL} ${HASH}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function specific_tweaks() {
|
||||||
|
echo "boot=\"legacy\"" >> "${CONF_FILE}"
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -27,3 +27,7 @@ function get_() {
|
||||||
HASH=$(web_pipe "${URL}/${ISO}.md5.txt" | cut -d' ' -f1)
|
HASH=$(web_pipe "${URL}/${ISO}.md5.txt" | cut -d' ' -f1)
|
||||||
echo "${URL}/${ISO} ${HASH}"
|
echo "${URL}/${ISO} ${HASH}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function specific_tweaks() {
|
||||||
|
echo "boot=\"legacy\"" >> "${CONF_FILE}"
|
||||||
|
}
|
||||||
|
|
|
||||||
2
quickget
2
quickget
|
|
@ -596,8 +596,6 @@ EOF
|
||||||
|
|
||||||
# OS specific tweaks
|
# OS specific tweaks
|
||||||
case ${OS} in
|
case ${OS} in
|
||||||
dragonflybsd|haiku|openbsd|netbsd|slackware|slax|tails|tinycore)
|
|
||||||
echo "boot=\"legacy\"" >> "${CONF_FILE}";;
|
|
||||||
esac
|
esac
|
||||||
|
|
||||||
if [ "${OS}" == "ubuntu" ] && [[ ${RELEASE} == *"daily"* ]]; then
|
if [ "${OS}" == "ubuntu" ] && [[ ${RELEASE} == *"daily"* ]]; then
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue