summaryrefslogtreecommitdiffstats
path: root/release/scripts
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1995-04-09 09:01:56 +0000
committerjkh <jkh@FreeBSD.org>1995-04-09 09:01:56 +0000
commit11c4653bbc51d33ebe2ba9bdf4b4039bb33a10b9 (patch)
tree7f673407d5822aee4b389a9c2f9d6b6dce6da338 /release/scripts
parentb985c7c718c81c612edd786ae10d32ed1b7e4ae7 (diff)
downloadFreeBSD-src-11c4653bbc51d33ebe2ba9bdf4b4039bb33a10b9.zip
FreeBSD-src-11c4653bbc51d33ebe2ba9bdf4b4039bb33a10b9.tar.gz
Do another pass over the delete code. This is better. Now we don't
try to expand a wildcard to delete the entire contents.
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/instdist.sh16
1 files changed, 9 insertions, 7 deletions
diff --git a/release/scripts/instdist.sh b/release/scripts/instdist.sh
index 590cce1..15fef2d 100644
--- a/release/scripts/instdist.sh
+++ b/release/scripts/instdist.sh
@@ -10,7 +10,7 @@
# putting your name on top after doing something trivial like reindenting
# it, just to make it look like you wrote it!).
#
-# $Id: instdist.sh,v 1.16 1995/03/24 00:23:02 phk Exp $
+# $Id: instdist.sh,v 1.17 1995/04/09 08:56:02 jkh Exp $
if [ "${_INSTINST_SH_LOADED_}" = "yes" ]; then
return 0
@@ -80,18 +80,18 @@ media_cd_tmpdir()
media_rm_tmpdir()
{
cd /
- if [ "X${NO_ASK_REMOVE}" != "X" ]; then
- rm -rf ${_TARGET}
- return
- fi
if [ -d ${TMPDIR}/${MEDIA_DISTRIBUTION} ]; then
_TARGET=${TMPDIR}/${MEDIA_DISTRIBUTION}
else
- _TARGET="${TMPDIR}/*"
+ _TARGET=${TMPDIR}/
+ fi
+ if [ "X${NO_ASK_REMOVE}" != "X" ]; then
+ rm -rf ${_TARGET} > /dev/null 2>&1
+ return
fi
if dialog --title "Delete contents?" --yesno \
"Do you wish to delete ${_TARGET}?" -1 -1; then
- rm -rf ${_TARGET}
+ rm -rf ${_TARGET} > /dev/null 2>&1
if dialog --title "Future Confirmation?" --yesno \
"Do you wish to suppress this dialog in the future?" -1 -1;
then
@@ -296,6 +296,8 @@ media_install_set()
fi
else
dialog --clear
+ echo "Using manual ftp. Please download the ${MEDIA_DISTRIBUTION} distribution now."
+ echo "To avoid this kind of manual labor in the future, try to fetch by URL!"
SHELL=/stand/sh ftp ${MEDIA_DEVICE}
dialog --clear
media_extract_dist
OpenPOWER on IntegriCloud