Adding casper 1.61+debian-1.
[live-boot-grml.git] / scripts / casper-bottom / 25configure_init
1 #!/bin/sh
2
3 PREREQ=""
4 DESCRIPTION="Setting up init..."
5
6 . /scripts/functions
7
8 prereqs()
9 {
10        echo "$PREREQ"
11 }
12
13 case $1 in
14 # get pre-requisites
15 prereqs)
16        prereqs
17        exit 0
18        ;;
19 esac
20
21 log_begin_msg "$DESCRIPTION"
22
23 # Arrange for shells on virtual consoles, rather than login prompts
24
25 if [ -n "$USERNAME" ]; then
26     sed -i -e "s|^\([^:]*:[^:]*:[^:]*\):.*getty.*\<\(tty[0-9]*\).*$|\1:/bin/login -f $USERNAME </dev/\2 >/dev/\2 2>\&1|" /root/etc/inittab
27 fi
28
29 # This has the nice side effect of the cron.{daily,weekly,monthly} jobs in
30 # /etc/crontab remaining disabled, yet also not run by anacron
31 for f in /root/etc/rc?.d/S??anacron; do
32     mv ${f} ${f%/*}/K00anacron
33 done
34
35 # No point, really
36 rm -f /root/etc/rc?.d/[SK]??postfix
37
38 # Avoid clobbering the user's clock
39 rm -f /root/etc/rc?.d/K??hwclock.sh
40
41 # Disable readahead since it doesn't play well with squashfs + unionfs
42 # use chmod instead of mv to not trigger unionfs bugs.
43 chmod -x /root/sbin/readahead-list
44
45 # Install shutdown script
46 cp -a /lib/casper/shutdown /root/etc/init.d/casper-shutdown
47 if [ -f /root/etc/rc0.d/S90halt ]; then
48     ln -s ../init.d/casper-shutdown /root/etc/rc0.d/S89casper
49 fi
50 if [ -f /root/etc/rc6.d/S90reboot ]; then
51     ln -s ../init.d/casper-shutdown /root/etc/rc6.d/S89casper
52 fi
53
54 log_end_msg
55
56 exit 0