+++ /dev/null
-description "Start a tty"
-author "IPFire Team"
-
-# Automatically start a configured serial console
-#
-# How this works:
-#
-# On boot, a udev helper examines /dev/console. If a serial console is the
-# primary console (last console on the commandline in grub), the event
-# 'serial-console-available <port name> <speed>' is emitted, which
-# triggers this script.
-#
-# If your serial console is not the primary console, or you want a getty
-# on serial even if it's not the console, create your own event by copying
-# /etc/init/tty[2-6], and changing the getty line in that file.
-
-start on serial-console-available *
-stop on starting shutdown or starting reboot
-
-pre-start script
- /sbin/securetty $DEV
-end script
-
-exec /sbin/agetty -n -l /root/autologin $DEV $SPEED vt100-nav
+++ /dev/null
-description "Start a tty"
-author "IPFire Team"
-
-start on stopped mountfs
-stop on starting shutdown
-
-respawn
-exec /sbin/agetty -n -l /root/autologin tty1 9600
+++ /dev/null
-description "Start a tty"
-author "IPFire Team"
-
-start on stopped mountfs
-stop on starting shutdown
-
-respawn
-exec /sbin/agetty -n -l /root/autologin tty2 9600
+++ /dev/null
-description "Start a tty"
-author "IPFire Team"
-
-start on stopped mountfs
-stop on starting shutdown
-
-respawn
-exec /sbin/agetty -n -l /root/autologin tty3 9600
+++ /dev/null
-description "Start a tty"
-author "IPFire Team"
-
-start on stopped mountfs
-stop on starting shutdown
-
-respawn
-exec /sbin/agetty -n -l /root/autologin tty4 9600
+++ /dev/null
-#!/bin/bash
-###############################################################################
-# #
-# IPFire.org - A linux based firewall #
-# Copyright (C) 2008 Michael Tremer & Christian Schmidt #
-# #
-# This program is free software: you can redistribute it and/or modify #
-# it under the terms of the GNU General Public License as published by #
-# the Free Software Foundation, either version 3 of the License, or #
-# (at your option) any later version. #
-# #
-# This program is distributed in the hope that it will be useful, #
-# but WITHOUT ANY WARRANTY; without even the implied warranty of #
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
-# GNU General Public License for more details. #
-# #
-# You should have received a copy of the GNU General Public License #
-# along with this program. If not, see <http://www.gnu.org/licenses/>. #
-# #
-###############################################################################
-
-LANG=en_US.UTF-8
-export LANG
-
-command=/sbin/pomona
-debug=off
-mode=
-
-for o in $(cat /proc/cmdline) ; do
- case $o in
- mode=*)
- mode=${o#mode=}
- ;;
- debug)
- debug=on
- esac
-done
-
-if [ "$mode" = "install" ] && [[ "$(tty)" =~ "tty1" ]]; then
- if [ "$debug" == "on" ]; then
- command="$command --debug"
- fi
- exec $command
-fi
+++ /dev/null
-#!/bin/bash
-
-echo "Logging in \"root\""
-exec /bin/login -f root