diff options
author | Silvino Silva <silvino@bk.ru> | 2016-08-22 16:35:00 +0100 |
---|---|---|
committer | Silvino Silva <silvino@bk.ru> | 2016-08-22 20:08:05 +0100 |
commit | 1ac5f126bf1b3f2e18001dab8b9f2ae6255309cf (patch) | |
tree | 0383468088621583e29e1e8be1fdeeceb3ec0d14 /scripts/getiso.sh | |
parent | 05c1ad5f7378e421f8ea06fb55e44ec773f0f055 (diff) | |
download | doc-1ac5f126bf1b3f2e18001dab8b9f2ae6255309cf.tar.gz |
first doc core os revision
Diffstat (limited to 'scripts/getiso.sh')
-rw-r--r-- | scripts/getiso.sh | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/scripts/getiso.sh b/scripts/getiso.sh deleted file mode 100644 index 18f1ad1..0000000 --- a/scripts/getiso.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash - -ISO_URL="https://serverop.de/crux/crux-3.2/iso/crux-3.2.iso" -ISO_FILE="crux-3.2.iso" - -printf "1.1.1 Path/to crux-3.2.iso (/home/user/Downloads):" -read ISO_PATH - - -#prepare_iso() { - - ISO_FILE=$ISO_PATH/$ISO_FILE - - if [ -f $ISO_FILE ]; - then - echo "File $ISO_FILE exists." - else - echo "File $ISO_FILE does not exist." - cd $ISO_PATH && { curl -k -O $ISO_URL ; cd -; } - fi - -#} - -modprobe isofs -modprobe loop -mount -o loop $ISO_FILE $CHROOT/media |