]> git.saurik.com Git - apt.git/blobdiff - debian/postinst
Added sample deb-src lines
[apt.git] / debian / postinst
index 3de0541864f4a7853b644f4f4853448b6eb4275a..6e729c01b1ab3c546641d3cb66a5118ca215fb6a 100755 (executable)
@@ -15,13 +15,18 @@ 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
+# See sources.list(5) for more information, especialy
 # Remember that you can only use http, ftp or file URIs
+# CDROMs are managed throught the apt-cdrom tool.
+# Proxy configuration is covered through environment variables or
+# 
 deb http://http.us.debian.org/debian stable main contrib non-free
 deb http://non-us.debian.org/debian-non-US stable non-US
+deb http://security.debian.org stable updates
+
+# Uncomment if you want the apt-get source function to work
+#deb-src http://http.us.debian.org/debian stable main contrib non-free
+#deb-src http://non-us.debian.org/debian-non-US stable non-US
 
 EOF
 }
@@ -46,6 +51,8 @@ case "$1" in
               else
                 check_apt_conf
               fi
-
+              if [ -f /usr/sbin/dhelp_parse ]; then
+                /usr/sbin/dhelp_parse -a /usr/doc/apt
+              fi
 esac