summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:56:10 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:56:10 +0000
commitda90e41bb19dbfcb954c22e3e7065a504234e4b6 (patch)
treef901b174d4a6d02c362de5b86f6a78c5343e06fc
parent4286fa75bf7d5381ea2102cffd8f1b613c4398b0 (diff)
Changed handling of the no-dowload case
Author: jgg Date: 2000-06-21 01:58:21 GMT Changed handling of the no-dowload case
-rw-r--r--debian/changelog9
-rwxr-xr-xdselect/install8
2 files changed, 6 insertions, 11 deletions
diff --git a/debian/changelog b/debian/changelog
index e71c598b4..88064799a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,11 @@
apt (0.3.19) frozen unstable; urgency=low
- * Added --dry-run to match docs. Closes #65153, #64292
- * Obscure divide by zero problem. Closes #64394
- * Update sizetable for mips. Closes #62288
+ * Added --dry-run to match docs. Closes: #65153, #64292
+ * Obscure divide by zero problem. Closes: #64394
+ * Update sizetable for mips. Closes: #62288
* Fixed a bug with passive FTP connections
- * Has sizetable entry for sparc64. Closes #64869
+ * Has sizetable entry for sparc64. Closes: #64869
+ * Undid the fix to bug #55709. Closes: #65952
-- Ben Gertzfield <che@debian.org> Fri, 12 May 2000 21:10:54 -0700
diff --git a/dselect/install b/dselect/install
index 8ac3523bd..e543344b5 100755
--- a/dselect/install
+++ b/dselect/install
@@ -39,7 +39,6 @@ yesno() {
echo $ans | tr YN yn
}
-OLDLS=`ls -ld $ARCHIVES`
if [ x$WAIT = "xyes" ]; then
$APTGET $OPTS -d dselect-upgrade
echo "Press enter to continue." && read RES
@@ -63,11 +62,6 @@ if [ $RES -eq 0 ]; then
exit 0
fi
- NEWLS=`ls -ld $ARCHIVES`
- if [ "x$OLDLS" = "x$NEWLS" ]; then
- exit 0
- fi
-
# Check the cleaning mode
case `echo $CLEAN | tr '[:upper:]' '[:lower:]'` in
auto)
@@ -78,7 +72,7 @@ if [ $RES -eq 0 ]; then
;;
prompt)
exec 3>&1
- if [ `yesno "Do you want to erase the downloaded .deb files?" y` = y ]; then
+ if [ `yesno "Do you want to erase any previously downloaded .deb files?" y` = y ]; then
$APTGET clean && echo "Press enter to continue." && read RES && exit 0;
fi
;;