]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - src/initscripts/init.d/firstsetup
iptables: Replace state module by conntrack module.
[people/teissler/ipfire-2.x.git] / src / initscripts / init.d / firstsetup
1 #!/bin/bash
2
3 # Exit if firstsetup was already done...
4 if [ -e /var/ipfire/main/firstsetup_ok ]; then
5 exit 0;
6 fi
7
8 # Edit the serial console entry at /etc/inittab matching to console parameter.
9 ser_console() {
10 while test x"$1" != x
11 do
12 case $1 in
13 console=*)
14 scon=${1##console=};
15 sed -i -e "s|^7:2345:respawn:/sbin/agetty.*|7:2345:respawn:/sbin/agetty ${scon%%,*} ${scon##*,}|g" /etc/inittab
16 shift
17 ;;
18 *)
19 shift
20 ;;
21 esac
22 done
23 }
24 cmdline=`cat /proc/cmdline`
25 ser_console $cmdline
26 # reload inittab
27 /sbin/init q
28 #
29 /etc/init.d/sysklogd start
30 export LANG=en_US.utf8
31 /usr/local/sbin/setup /dev/tty2 INSTALL
32 if [ "${?}" == "1" ]; then
33 echo Setup not finished. Rebooting ...
34 reboot -f
35 fi
36
37 # plan install pae kernel at next pakfire update if pae is supported
38 rm -rf /opt/pakfire/db/*/meta-linux-pae
39 if [ ! "$(grep "^flags.* pae " /proc/cpuinfo)" == "" ]; then
40 echo "Name: linux-pae" > /opt/pakfire/db/installed/meta-linux-pae
41 echo "ProgVersion: 0" >> /opt/pakfire/db/installed/meta-linux-pae
42 echo "Release: 0" >> /opt/pakfire/db/installed/meta-linux-pae
43 fi
44
45 echo Restarting udev...
46 killall udevd
47 /sbin/udevd --daemon
48 /sbin/udevadm trigger
49 /sbin/udevadm settle
50 /etc/init.d/sysklogd stop
51 touch /var/ipfire/main/firstsetup_ok