970d3f1b9ad462197fb05a3b08b4c3e129929056
[util-vserver.git] / distrib / etch / vserver-config.sh
1 #!/bin/sh
2
3 REMOVE_LINKS="
4 bootlogd
5 checkfs
6 checkroot
7 halt
8 hwclock.sh
9 ifupdown
10 klogd
11 libdevmapper1.02
12 makedev
13 module-init-tools
14 mountall.sh
15 mountdevsubfs.sh
16 mountnfs.sh
17 mountkernfs.sh
18 mountvirtfs
19 networking
20 reboot
21 setserial
22 single
23 stop-bootlogd
24 stop-bootlogd-single
25 umountfs
26 umountnfs.sh
27 umountroot
28 urandom
29 "
30
31 test -x /usr/sbin/tzconfig && /usr/sbin/tzconfig
32
33 aptitude update
34 LANG=C aptitude install locales
35
36 test -x /usr/sbin/locale-gen && /usr/sbin/locale-gen
37
38 dpkg-reconfigure passwd
39 tasksel
40
41 for link in $REMOVE_LINKS; do
42         update-rc.d -f $link remove
43 done
44