Remove deprecated files.
[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 aptitude update
32 LANG=C aptitude install locales
33
34 test -x /usr/sbin/locale-gen && /usr/sbin/locale-gen
35
36 for link in $REMOVE_LINKS; do
37         update-rc.d -f $link remove
38 done
39