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)
|
||||
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)
|
||||
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')
|
||||
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)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function specific_tweaks() {
|
||||
echo "boot=\"legacy\"" >> "${CONF_FILE}"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue