Added debian/ directory and changelog, control, postins...
[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
17 cat > /etc/apt/sources.list <<EOF
18# Use for a local mirror - remove the ftp1 http lines for the bits
19# your mirror contains.
20# deb file:/your/mirror/here/debian stable main contrib non-free
21# See sources.list(5) for more information, especial
22# Remember that you can only use http, ftp or file URIs
23deb http://http.us.debian.org/debian stable main contrib non-free
24deb http://non-us.debian.org/debian-non-US stable non-US
25
26EOF
27}
28
29check_apt_conf ()
30{
31 true
32 # this is for future expansion
33}
34
35case "$1" in
36 configure)
37 #
38 # If there is no /etc/apt/sources.list then create a default
39 #
40 if [ ! -f /etc/apt/sources.list ]; then
41 create_apt_conf
42 echo
43 echo "If you wish to change the default sites from which APT fetches Debian"
44 echo "packages, please edit the file /etc/apt/sources.list."
45 else
46 check_apt_conf
47 fi
48
49esac
50