# Arctic Linux - busybox init table
#
# Arctic keeps PID 1 boring on purpose: busybox init, a shell script for boot,
# a shell script for shutdown, and getty on the consoles. Everything else is a
# script under /etc/rc.d, managed with the `service` command.

# Bring the system up.
::sysinit:/etc/rc.boot

# Consoles. tty1 is the one the display manager takes over when enabled.
tty1::respawn:/sbin/getty 38400 tty1 linux
tty2::respawn:/sbin/getty 38400 tty2 linux
tty3::respawn:/sbin/getty 38400 tty3 linux
tty4::respawn:/sbin/getty 38400 tty4 linux

# Serial console, handy on virtual machines and headless boxes.
ttyS0::respawn:/sbin/getty -L 115200 ttyS0 vt100

# Take the system down cleanly.
::shutdown:/etc/rc.shutdown

# ctrl-alt-del reboots.
::ctrlaltdel:/sbin/reboot

# Last resort if rc.boot dies: give the operator a shell rather than a panic.
::restart:/sbin/init
