]> git.saurik.com Git - apt.git/blobdiff - debian/postinst
* Updated Greek translation from Konstantinos Margariti...
[apt.git] / debian / postinst
index ee5ceac2fc32482796e0154834d9ce6d6835f937..89179211137e16c7be20f5b6bb75deeee52334ba 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
 }
  
@@ -27,19 +25,12 @@ check_apt_conf ()
 
 case "$1" in
        configure)
-              ldconfig
               #
                # If there is no /etc/apt/sources.list then create a default
               #
               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
-              if [ -f /usr/sbin/dhelp_parse ]; then
-                /usr/sbin/dhelp_parse -a /usr/doc/apt
-              fi
 esac