diff options
-rw-r--r-- | core/scripts/setup-iso.sh | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/core/scripts/setup-iso.sh b/core/scripts/setup-iso.sh index ebcd043..458284d 100644 --- a/core/scripts/setup-iso.sh +++ b/core/scripts/setup-iso.sh @@ -4,13 +4,13 @@ ISO_DIR="/usr/ports/iso" MOUNT_POINT="/mnt/media" -ISO_FILE="${ISO_DIR}/crux-3.4.iso" -MD5_FILE="${ISO_DIR}/crux-3.4.md5" +ISO_FILE="${ISO_DIR}/crux-3.5.iso" +MD5_FILE="${ISO_DIR}/crux-3.5.md5" # iso and md5 remote location -#ISO_URL="https://serverop.de/crux/crux-3.4/iso/crux-3.4.iso" -ISO_URL="https://ftp.spline.inf.fu-berlin.de/pub/crux/crux-3.4/iso/crux-3.4.iso" -MD5_URL="https://serverop.de/crux/crux-3.4/iso/crux-3.4.md5" +#ISO_URL="https://serverop.de/crux/crux-3.5/iso/crux-3.5.iso" +ISO_URL="https://ftp.spline.inf.fu-berlin.de/pub/crux/crux-3.5/iso/crux-3.5.iso" +MD5_URL="https://serverop.de/crux/crux-3.5/iso/crux-3.5.md5" # First we define the function ConfirmOrExit () { @@ -99,8 +99,8 @@ while [ "$1" ]; do -r|--root) ISO_DIR=$2 - ISO_FILE="${ISO_DIR}/crux-3.4.iso" - MD5_FILE="${ISO_DIR}/crux-3.4.md5" + ISO_FILE="${ISO_DIR}/crux-3.5.iso" + MD5_FILE="${ISO_DIR}/crux-3.5.md5" shift ;; -d|--download) @@ -120,6 +120,10 @@ while [ "$1" ]; do -m|--mount) echo "Check iso md5sum:" echo "_____________________" + if [ ! -z "$2" ]; + then + MOUNT_POINT=$2 + fi print_data ConfirmOrExit mount_iso |