summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 17:01:15 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 17:01:15 +0000
commitfe8f82e5149bba8d0166bbbd06a33733d639ad68 (patch)
tree8468486cb2ea537326c322c720d5794f55b42897 /debian
parentac625538fe9700005cda8af26fb0589917d692b4 (diff)
Be quiet in apt.post{inst,rm}.
Author: doogie Date: 2003-04-27 01:43:29 GMT Be quiet in apt.post{inst,rm}.
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog1
-rwxr-xr-xdebian/postinst5
-rwxr-xr-xdebian/postrm4
3 files changed, 1 insertions, 9 deletions
diff --git a/debian/changelog b/debian/changelog
index 1719c2c41..03961bd9a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -110,6 +110,7 @@ apt (0.5.4.9) unstable; urgency=low
* Add a vcg command to apt-cache, similiar to dotty. Closes: #150512.
* Add option to apt-get to show versions of packages being
upgraded/installed.
+ * Be quiet in apt.post{inst,rm}. Closes: #70685.
-- Adam Heath <doogie@debian.org> Sun, 02 Feb 2003 02:54:45 -0600
diff --git a/debian/postinst b/debian/postinst
index 085f15cd6..274724cdb 100755
--- a/debian/postinst
+++ b/debian/postinst
@@ -12,8 +12,6 @@ set -e
create_apt_conf ()
{
- echo "/etc/apt/sources.list does not exist; creating a default setup."
-
cp /usr/share/doc/apt/examples/sources.list /etc/apt/sources.list
}
@@ -33,9 +31,6 @@ case "$1" in
#
if [ ! -f /etc/apt/sources.list ]; then
create_apt_conf
- echo
- echo "If you wish to change the default sites from which APT fetches Debian"
- echo "packages, please edit the file /etc/apt/sources.list."
else
check_apt_conf
fi
diff --git a/debian/postrm b/debian/postrm
index f93eb762a..d56a2d72d 100755
--- a/debian/postrm
+++ b/debian/postrm
@@ -15,11 +15,7 @@ case "$1" in
ldconfig
;;
purge)
- echo -n "Removing APT cache and state files... "
- echo -n "/var/cache/apt"
rm -rf /var/cache/apt
- echo -n ", /var/lib/apt"
rm -rf /var/lib/apt
- echo ". Done."
esac