X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=scripts%2Flive;h=753fceb9461f87fbc421b6fc8fa0a149546ee218;hb=a2b39cca5a3e08d50f260ea985a1cd53625c45cd;hp=e93570f60da7f6ca4cbbaa4c449b47a853476c06;hpb=a33a540745114d9f54b43a62240ccc2209626537;p=live-boot-grml.git diff --git a/scripts/live b/scripts/live index e93570f..753fceb 100755 --- a/scripts/live +++ b/scripts/live @@ -339,25 +339,6 @@ Arguments () export NOPRESEED ;; - url=*) - URL_LOCATION="${ARGUMENT#url=}" - - mount -o bind /sys /root/sys - mount -o bind /proc /root/proc - mount -o bind /dev /root/dev - - mkdir -p /root/var/run/network - [ "${NETBOOT}" ] || chroot /root dhclient eth0 - chroot /root wget -P /tmp "${URL_LOCATION}" - [ "${NETBOOT}" ] || chroot /root ifconfig eth0 down - - umount /root/sys - umount /root/proc - umount /root/dev - - LOCATIONS="/tmp/$(basename ${URL_LOCATION}) ${LOCATIONS}" - ;; - */*=*) question="${ARGUMENT%%=*}" value="${ARGUMENT#*=}"