More debug text
[ntk/apt.git] / debian / postinst
CommitLineData
2d18d44e
AL
1#! /bin/sh
2
3# apt postinst, based liberally on James Troup's gpm postinst
4# Copyright (C) 1998, Ben Gertzfield <che@debian.org>
5
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 2 of the License, or
9# (at your option) any later version.
10
11set -e
12
13create_apt_conf ()
14{
15 echo "/etc/apt/sources.list does not exist; creating a default setup."
16
aa6e3431 17 cp /usr/doc/apt/examples/sources.list /etc/apt/sources.list
2d18d44e
AL
18}
19
20check_apt_conf ()
21{
22 true
23 # this is for future expansion
24}
25
26case "$1" in
27 configure)
ed3dc989 28 ldconfig
2d18d44e
AL
29 #
30 # If there is no /etc/apt/sources.list then create a default
31 #
32 if [ ! -f /etc/apt/sources.list ]; then
33 create_apt_conf
34 echo
35 echo "If you wish to change the default sites from which APT fetches Debian"
36 echo "packages, please edit the file /etc/apt/sources.list."
37 else
38 check_apt_conf
39 fi
396f4b08
AL
40 if [ -f /usr/sbin/dhelp_parse ]; then
41 /usr/sbin/dhelp_parse -a /usr/doc/apt
42 fi
2d18d44e
AL
43esac
44
0b5c85b5 45#DEBHELPER#