summaryrefslogtreecommitdiffstats
path: root/functions
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2011-04-08 15:51:42 (GMT)
committerJoey Hess <joey@kitenet.net>2011-04-08 15:51:42 (GMT)
commite9d98f488302b8bf55cf356937613340e875402f (patch)
tree606d75786a515ac4755c458021e8ad29abd5280a /functions
parent8ab67eded30d05a613d1f0f8c6c5420d8fe93948 (diff)
downloaddebootstrap-e9d98f488302b8bf55cf356937613340e875402f.zip
debootstrap-e9d98f488302b8bf55cf356937613340e875402f.tar.gz
debootstrap-e9d98f488302b8bf55cf356937613340e875402f.tar.bz2
Removed the --boot-floppies switch and mode.
Assuming this has not been used in 10 years.
Diffstat (limited to 'functions')
-rw-r--r--functions9
1 files changed, 0 insertions, 9 deletions
diff --git a/functions b/functions
index 46f4b78..b4f74a9 100644
--- a/functions
+++ b/functions
@@ -66,9 +66,6 @@ wgetprogress () {
if [ "$USE_DEBIANINSTALLER_INTERACTION" ] && [ "$PROGRESS_NEXT" ]; then
wget "$@" 2>&1 >/dev/null | $PKGDETAILS "WGET%" $PROGRESS_NOW $PROGRESS_NEXT $PROGRESS_END >&3
ret=$?
- elif [ "$USE_BOOTFLOPPIES_INTERACTION" ] && [ "$PROGRESS_NEXT" ]; then
- wget "$@" 2>&1 >/dev/null | $PKGDETAILS "WGET%" $PROGRESS_NOW $PROGRESS_NEXT $PROGRESS_END "$PROGRESS_WHAT" >&3
- ret=$?
else
wget $QSWITCH "$@"
ret=$?
@@ -90,12 +87,6 @@ progress () {
(echo "P: $now $end $name"
for x in "$@"; do echo "PA: $x"; done
echo "PF: $fmt") >&3
- elif [ "$USE_BOOTFLOPPIES_INTERACTION" ]; then
- PROGRESS_NOW="$now"
- PROGRESS_END="$end"
- PROGRESS_WHAT="`printf "$fmt" "$@"`"
- PROGRESS_NEXT=""
- printf "P: %s %s %s\n" $now $end "$PROGRESS_WHAT" >&3
fi
}