]> git.saurik.com Git - apt.git/blobdiff - debian/postinst
* Patch from Otavio Salvador to avoid listing suggests/...
[apt.git] / debian / postinst
index e8ab6aee6885542e3da9e47b16a26fbc6ef55306..274724cdbbceaebc32064dc55c89c403ee8a30c0 100755 (executable)
@@ -12,9 +12,7 @@ set -e
 
 create_apt_conf ()
 {
- echo "/etc/apt/sources.list does not exist; creating a default setup."
-
- cp /usr/doc/apt/examples/sources.list /etc/apt/sources.list
+ cp /usr/share/doc/apt/examples/sources.list /etc/apt/sources.list
 }
  
 check_apt_conf ()
@@ -23,6 +21,8 @@ check_apt_conf ()
  # this is for future expansion
 }
 
+#DEBHELPER#
+
 case "$1" in
        configure)
               ldconfig
@@ -31,15 +31,7 @@ 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
-              if [ -f /usr/sbin/dhelp_parse ]; then
-                /usr/sbin/dhelp_parse -a /usr/doc/apt
-              fi
 esac
-
-#DEBHELPER#