]> git.saurik.com Git - apt.git/blobdiff - debian/postinst
s/st_mtime/mtime/ on our local stat structure in apt-ft...
[apt.git] / debian / postinst
index d36c5a7055529bdd00856fdb5bf58b208df107a5..91755764704c84b66d68568c867ddcb9e6b895ce 100755 (executable)
@@ -14,16 +14,7 @@ create_apt_conf ()
 {
  echo "/etc/apt/sources.list does not exist; creating a default setup."
 
- cat > /etc/apt/sources.list <<EOF
-# Use for a local mirror - remove the ftp1 http lines for the bits
-# your mirror contains.
-# deb file:/your/mirror/here/debian stable main contrib non-free
-# See sources.list(5) for more information, especial
-# Remember that you can only use http, ftp or file URIs
-deb http://http.us.debian.org/debian stable main contrib non-free
-deb http://non-us.debian.org/debian-non-US stable non-US
-
-EOF
+ cp /usr/share/doc/apt/examples/sources.list /etc/apt/sources.list
 }
  
 check_apt_conf ()
@@ -32,8 +23,11 @@ check_apt_conf ()
  # this is for future expansion
 }
 
+#DEBHELPER#
+
 case "$1" in
        configure)
+              ldconfig
               #
                # If there is no /etc/apt/sources.list then create a default
               #
@@ -45,6 +39,7 @@ case "$1" in
               else
                 check_apt_conf
               fi
-
+              if [ -f /usr/sbin/dhelp_parse ]; then
+                /usr/sbin/dhelp_parse -a /usr/share/doc/apt
+              fi
 esac
-