]> git.saurik.com Git - apt.git/commitdiff
Be quiet in apt.post{inst,rm}.
authorArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 17:01:15 +0000 (17:01 +0000)
committerArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 17:01:15 +0000 (17:01 +0000)
Author: doogie
Date: 2003-04-27 01:43:29 GMT
Be quiet in apt.post{inst,rm}.

debian/changelog
debian/postinst
debian/postrm

index 1719c2c41535b4d35dba012b90d77b147462ea1d..03961bd9a58204540024e699f532c4a33a4a973e 100644 (file)
@@ -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
 
index 085f15cd6fdb3e3bbf3c0b7e2e03af128a1cd022..274724cdbbceaebc32064dc55c89c403ee8a30c0 100755 (executable)
@@ -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
index f93eb762ab1f0a96b95b34ac26fb61f52cf67286..d56a2d72d6fdb8b6665eae39d4c376f747f59276 100755 (executable)
@@ -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