mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Update adding an OS to quickget guide
This commit is contained in:
parent
5bfec8a9d3
commit
5f26733687
1 changed files with 3 additions and 4 deletions
7
quickget
7
quickget
|
@ -1,12 +1,11 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
|
||||||
# Here the quick 'n dirty guide to adding a new OS to quickget
|
# Here the quick 'n dirty guide to adding a new OS to quickget
|
||||||
#
|
#
|
||||||
# 1. Add the new OS, all lowercase, to os_support()
|
# 1. Add the new OS, all lowercase, to os_support()
|
||||||
# 2. Add a "pretty name" display name to pretty_name()
|
# 2. Add a "pretty name" display name to pretty_name()
|
||||||
# 3. Create a releases_newos() generator that outputs the currently supported release versions
|
# 3. Create a releases_newos() generator that outputs the currently supported release versions
|
||||||
# 4. Add the new OS to make_vm_config()
|
# 4. Add the new OS to make_vm_config(); (only if required)
|
||||||
# 5. Create a get_newos() function that does something like this:
|
# 5. Create a get_newos() function that does something like this:
|
||||||
# function get_newos() {
|
# function get_newos() {
|
||||||
# local HASH=""
|
# local HASH=""
|
||||||
|
@ -15,8 +14,8 @@
|
||||||
#
|
#
|
||||||
# validate_release "releases_newos"
|
# validate_release "releases_newos"
|
||||||
# ISO="newos-${RELEASE}-amd64.iso"
|
# ISO="newos-${RELEASE}-amd64.iso"
|
||||||
# URL="https://www.newos.org/download/${ISO}"
|
# URL="https://www.newos.org/download"
|
||||||
# web_get "${URL}" "${VM_PATH}"
|
# web_get "${URL}/${ISO}" "${VM_PATH}"
|
||||||
# web_get "${URL}/SHA256SUMS" "${VM_PATH}"
|
# web_get "${URL}/SHA256SUMS" "${VM_PATH}"
|
||||||
# HASH=$(cat "${VM_PATH}/SHA256SUMS" | cut -d' ' -f1)
|
# HASH=$(cat "${VM_PATH}/SHA256SUMS" | cut -d' ' -f1)
|
||||||
# check_hash "${ISO}" "${HASH}"
|
# check_hash "${ISO}" "${HASH}"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue