mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-11 11:35:54 +02:00
All network interfaces are renamed accordingly in setup Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
41 lines
1.2 KiB
Bash
41 lines
1.2 KiB
Bash
#!/bin/bash
|
|
|
|
# Exit if firstsetup was already done...
|
|
if [ -e /var/ipfire/main/firstsetup_ok ]; then
|
|
exit 0;
|
|
fi
|
|
|
|
# disable consoles if tty are not present
|
|
openvt -f -w -- /bin/sh -c echo > /dev/null 2>&1
|
|
if [ ! "${?}" == "0" ]; then
|
|
# Disable console on tty2-6
|
|
sed -i -e "s|2:2345:respawn:|#2:2345:respawn:|g" /etc/inittab
|
|
sed -i -e "s|3:2345:respawn:|#3:2345:respawn:|g" /etc/inittab
|
|
sed -i -e "s|4:2345:respawn:|#4:2345:respawn:|g" etc/inittab
|
|
sed -i -e "s|5:2345:respawn:|#5:2345:respawn:|g" /etc/inittab
|
|
sed -i -e "s|6:2345:respawn:|#6:2345:respawn:|g" /etc/inittab
|
|
fi
|
|
|
|
# reload inittab
|
|
/sbin/init q
|
|
#
|
|
/etc/init.d/sysklogd start
|
|
export LANG=en_US.utf8
|
|
/usr/sbin/setup /dev/tty2 INSTALL
|
|
if [ "${?}" == "1" ]; then
|
|
echo Setup not finished. Rebooting ...
|
|
reboot -f
|
|
fi
|
|
|
|
# plan install pae kernel at next pakfire update if pae is supported
|
|
if [ ! "$(grep "^flags.* pae " /proc/cpuinfo)" == "" ]; then
|
|
if [ ! -e /opt/pakfire/db/installed/meta-linux-pae ]; then
|
|
echo "Name: linux-pae" > /opt/pakfire/db/installed/meta-linux-pae
|
|
echo "ProgVersion: 0" >> /opt/pakfire/db/installed/meta-linux-pae
|
|
echo "Release: 0" >> /opt/pakfire/db/installed/meta-linux-pae
|
|
fi
|
|
fi
|
|
|
|
/etc/init.d/sysklogd stop
|
|
touch /var/ipfire/main/firstsetup_ok
|