blob: a43a08057aca02ccef4945738312366d9a2635fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
#! /bin/sh
# apt postinst, based liberally on James Troup's gpm postinst
# Copyright (C) 1998, Ben Gertzfield <che@debian.org>
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
set -e
create_apt_conf ()
{
echo "/etc/apt/sources.list does not exist; creating a default setup."
cat > /etc/apt/sources.list <<EOF
# 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
}
check_apt_conf ()
{
true
# this is for future expansion
}
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#
|