]> git.ipfire.org Git - ipfire-2.x.git/blame_incremental - src/initscripts/init.d/firstsetup
Merge branch 'iptables-upnpfw' into core67-merge
[ipfire-2.x.git] / src / initscripts / init.d / firstsetup
... / ...
CommitLineData
1#!/bin/bash
2
3# Exit if firstsetup was already done...
4if [ -e /var/ipfire/main/firstsetup_ok ]; then
5 exit 0;
6fi
7
8# Edit the serial console entry at /etc/inittab matching to console parameter.
9ser_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}
24cmdline=`cat /proc/cmdline`
25ser_console $cmdline
26# reload inittab
27/sbin/init q
28#
29/etc/init.d/sysklogd start
30export LANG=en_US.utf8
31/usr/local/sbin/setup /dev/tty2 INSTALL
32if [ "${?}" == "1" ]; then
33 echo Setup not finished. Rebooting ...
34 reboot -f
35fi
36
37# plan install pae kernel at next pakfire update if pae is supported
38rm -rf /opt/pakfire/db/*/meta-linux-pae
39if [ ! "$(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
43fi
44
45echo Restarting udev...
46killall udevd
47/sbin/udevd --daemon
48/sbin/udevadm trigger
49/sbin/udevadm settle
50/etc/init.d/sysklogd stop
51touch /var/ipfire/main/firstsetup_ok