X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/aa6e3431719da89d4beadf8fc81e5236f697d405..1e4a2b763f2225d6de3d498263da2a1a12697667:/debian/postinst diff --git a/debian/postinst b/debian/postinst index e8ab6aee6..1588f5241 100755 --- a/debian/postinst +++ b/debian/postinst @@ -12,9 +12,10 @@ 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 + EXAMPLE_SOURCE=/usr/share/doc/apt/examples/sources.list + if [ -f $EXAMPLE_SOURCE ]; then + cp $EXAMPLE_SOURCE /etc/apt/sources.list + fi } check_apt_conf () @@ -23,23 +24,16 @@ 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 # 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#