ready for tagging
[util-vserver.git] / distrib / warty / debootstrap.script
1 default_mirror http://old-releases.ubuntu.com/ubuntu
2 mirror_style release
3 download_style apt
4
5 work_out_debs () {
6
7     required="base-files base-passwd bash bsdutils coreutils libacl1 libattr1 debconf debconf-i18n liblocale-gettext-perl libtext-iconv-perl libtext-wrapi18n-perl libtext-charwidth-perl debianutils diff dpkg dselect libblkid1 e2fsprogs e2fslibs libcomerr2 libss2 libuuid1 findutils grep gzip hostname libcap1 libc6 libdb1-compat libdb3 libncurses5 libnewt0.51 libpam-modules libpam-runtime libpam0g libpopt0 login makedev mawk modutils mount ncurses-base ncurses-bin passwd perl-base procps sed slang1a-utf8 lsb-base initscripts sysvinit sysv-rc tar util-linux zlib1g whiptail libgcc1 gcc-3.3-base libstdc++5"
8
9     base="adduser alsa-base alsa-utils apt apt-utils aptitude at base-config bind9-host bsdmainutils bzip2 console-common console-data console-tools cpio cramfsprogs cron dash dbus-1 dhcp3-client dhcp3-common discover1 discover1-data dmsetup dnsutils dosfstools ed eject evms evms-ncurses fdutils file ftp gettext-base gnupg groff-base hdparm hotplug ifrename ifupdown info initrd-tools iproute iptables iputils-arping iputils-ping iputils-tracepath jfsutils klogd less libasound2 libatm1 libbz2-1.0 libconsole libdb4.2 libdevmapper1.00 libdiscover1 libdns16 libevms-2.3 libexpat1 libfribidi0 libgc1 libgcrypt7 libgdbm3 libgnutls10 libgpg-error0 libgpmg1 libidn11 libisc7 libiw27 libldap2 liblockfile1 liblwres1 liblzo1 libmagic1 libncursesw5 libopencdk8 libparted1.6-0 libpcap0.7 libpcap0.8 libreiserfs0.3-0 libsasl2 libsigc++-1.2-5c102 libssl0.9.7 libtasn1-2 libusb-0.1-4 libwrap0 locales logrotate lshw lsof ltrace lvm-common lvm10 lvm2 mailx man-db manpages mdadm mii-diag mime-support module-init-tools mtr-tiny mutt nano net-tools netbase netcat netkit-inetd ntp ntpdate openssh-client parted pciutils popularity-contest postfix postfix-tls ppp pppconfig pppoeconf psmisc python python2.3 reiser4progs reiserfsprogs reportbug rsync strace sudo sysklogd tcpd tcpdump telnet time ubuntu-base udev usbutils vim vim-common w3m wget wireless-tools xfsprogs"
10
11     without_package () {
12         echo "$2" | tr ' ' '\n' | grep -v "^$1$" | tr '\n' ' '
13     }
14     subst_package () {
15         echo "$3" | tr ' ' '\n' | sed "s/^$1$/$2/" | tr '\n' ' '
16     }
17
18     LIBC6=libc6
19
20     case $ARCH in
21         "i386")
22             required="$required libc6-i686"
23             base="$base dmidecode memtest86+ libreadline4"
24             ;;
25         "powerpc")
26             required="$required libreadline4"
27             base="$base hfsplus hfsutils libhfsp0 mac-fdisk pmac-fdisk powerpc-utils"
28             ;;
29         "amd64")
30             base="$base dmidecode libreadline4"
31             ;;
32         *)
33             # who knows?
34             ;;
35     esac
36 }
37
38 install_debs () {
39     first_stage_install
40     second_stage_install
41 }
42
43 first_stage_install () {
44     extract $required
45
46     mkdir -p "$TARGET/var/lib/dpkg"
47     : >"$TARGET/var/lib/dpkg/status"
48     echo >"$TARGET/var/lib/dpkg/available"
49
50     setup_etc
51     if [ ! -e "$TARGET/etc/fstab" ]; then
52         echo '# UNCONFIGURED FSTAB FOR BASE SYSTEM' > "$TARGET/etc/fstab"
53         chown 0.0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
54     fi
55
56     setup_devices
57
58     x_feign_install () {
59         local pkg="$1"
60         local deb="$(debfor $pkg)"
61         local ver="$(
62             ar -p "$TARGET/$deb" control.tar.gz | zcat |
63                 tar -O -xf - control ./control 2>/dev/null |
64                 sed -ne 's/^Version: *//Ip' | head -n 1
65         )"
66
67         mkdir -p "$TARGET/var/lib/dpkg/info"
68
69         echo \
70 "Package: $pkg
71 Version: $ver
72 Status: install ok installed" >> "$TARGET/var/lib/dpkg/status"
73
74         touch "$TARGET/var/lib/dpkg/info/${pkg}.list"
75     }
76
77     x_feign_install dpkg
78 }
79
80 second_stage_install () {
81     x_core_install () {
82         smallyes '' | in_target dpkg --force-depends --install $(debfor "$@")
83     }
84
85     p () {
86         baseprog="$(($baseprog + ${1:-1}))"
87     }
88
89     DEBIAN_FRONTEND=noninteractive
90     DEBCONF_NONINTERACTIVE_SEEN=true
91     export DEBIAN_FRONTEND DEBCONF_NONINTERACTIVE_SEEN
92
93     setup_proc
94     in_target /sbin/ldconfig
95
96     baseprog=0
97     bases=7
98
99     p; progress $baseprog $bases INSTCORE "Installing core packages" #1
100     info INSTCORE "Installing core packages..."
101
102     p; progress $baseprog $bases INSTCORE "Installing core packages" #2
103     ln -sf mawk $TARGET/usr/bin/awk
104     x_core_install base-files base-passwd
105     p; progress $baseprog $bases INSTCORE "Installing core packages" #3
106     x_core_install dpkg
107
108     if [ ! -e "$TARGET/etc/localtime" ]; then
109         ln -sf /usr/share/zoneinfo/UTC "$TARGET/etc/localtime"
110     fi
111
112     p; progress $baseprog $bases INSTCORE "Installing core packages" #4
113     x_core_install $LIBC6
114
115     p; progress $baseprog $bases INSTCORE "Installing core packages" #5
116     x_core_install perl-base
117     p; progress $baseprog $bases INSTCORE "Installing core packages" #6
118     rm $TARGET/usr/bin/awk
119     x_core_install mawk
120     p; progress $baseprog $bases INSTCORE "Installing core packages" #7
121     x_core_install debconf
122
123     baseprog=0
124     bases="$(set -- $required; echo $#)"
125
126     info UNPACKREQ "Unpacking required packages..."
127
128     smallyes '' | (repeat 5 in_target_failmsg UNPACK_REQ_FAIL_FIVE "Failure while unpacking required packages.  This will be attempted up to five times." "" dpkg --status-fd 8 --force-depends --unpack $(debfor $required) 8>&1 1>&7 | dpkg_progress $baseprog $bases UNPACKREQ "Unpacking required packages" UNPACKING) 7>&1
129
130     baseprog=0
131
132     info CONFREQ "Configuring required packages..."
133
134     mv "$TARGET/sbin/start-stop-daemon" "$TARGET/sbin/start-stop-daemon.REAL"
135     echo \
136 "#!/bin/sh
137 echo
138 echo \"Warning: Fake start-stop-daemon called, doing nothing\"" > "$TARGET/sbin/start-stop-daemon"
139     chmod 755 "$TARGET/sbin/start-stop-daemon"
140
141     setup_dselect_method apt
142     #on_exit "(in_target_nofail umount /dev/pts) || true"
143
144     smallyes '' | (in_target_failmsg CONF_REQ_FAIL "Failure while configuring required packages." "" dpkg --status-fd 8 --configure --pending --force-configure-any --force-depends 8>&1 1>&7 | dpkg_progress $baseprog $bases CONFREQ "Configuring required packages" CONFIGURING) 7>&1
145
146     baseprog=0
147     bases="$(set -- $base; echo $#)"
148
149     info UNPACKBASE "Unpacking the base system..."
150
151     smallyes '' | (repeat 5 in_target_failmsg INST_BASE_FAIL_FIVE "Failure while installing base packages.  This will be re-attempted up to five times." "" dpkg --status-fd 8 --force-auto-select --force-overwrite --force-confold --skip-same-version --unpack $(debfor $base) 8>&1 1>&7 | dpkg_progress $baseprog $bases UNPACKBASE "Unpacking base system" UNPACKING) 7>&1
152
153     baseprog=0
154
155     info CONFBASE "Configuring the base system..."
156
157     mv "$TARGET/usr/sbin/sendmail" "$TARGET/usr/sbin/sendmail.REAL"
158     ln -s /bin/true "$TARGET/usr/sbin/sendmail"
159
160     smallyes '' | (repeat 5 in_target_failmsg CONF_BASE_FAIL_FIVE "Failure while configuring base packages.  This will be attempted 5 times." "" dpkg --status-fd 8 --force-confold --skip-same-version  --configure -a 8>&1 1>&7 | dpkg_progress $baseprog $bases CONFBASE "Configuring base system" CONFIGURING) 7>&1
161
162     rm -f "$TARGET/usr/sbin/sendmail"
163     mv "$TARGET/usr/sbin/sendmail.REAL" "$TARGET/usr/sbin/sendmail"
164
165     mv "$TARGET/sbin/start-stop-daemon.REAL" "$TARGET/sbin/start-stop-daemon"
166
167     progress $bases $bases CONFBASE "Configuring base system"
168     info BASESUCCESS "Base system installed successfully."
169 }
170