]> git.pld-linux.org Git - projects/rc-scripts.git/blob - inittab
move kernel.panic to sysconfig, deprecating PANIC_REBOOT_TIME
[projects/rc-scripts.git] / inittab
1 #
2 # inittab       This file describes how the INIT process should set up
3 #               the system in a certain run-level.
4 #
5 #               $Id$
6 #
7 # Author:       Miquel van Smoorenburg, <miquels@drinkel.nl.mugnet.org>
8 #               Modified for RHS Linux by Marc Ewing and Donnie Barnes
9 #
10
11 # Default runlevel. The runlevels used by PLD Linux are:
12 #   0 - halt (Do NOT set initdefault to this)
13 #   1 - Single user mode
14 #   2 - Multiuser, without NFS (The same as 3, if you do not have networking)
15 #   3 - Full multiuser mode
16 #   4 - unused
17 #   5 - X11
18 #   6 - reboot (Do NOT set initdefault to this)
19 #
20 id:3:initdefault:
21
22 # System initialization.
23 si::sysinit:/etc/rc.d/rc.sysinit
24
25 l0:0:wait:/etc/rc.d/rc 0
26 l1:1:wait:/etc/rc.d/rc 1
27 l2:2:wait:/etc/rc.d/rc 2
28 l3:3:wait:/etc/rc.d/rc 3
29 l4:4:wait:/etc/rc.d/rc 4
30 l5:5:wait:/etc/rc.d/rc 5
31 l6:6:wait:/etc/rc.d/rc 6
32
33 # Trap CTRL-ALT-DELETE
34 ca::ctrlaltdel:/sbin/shutdown -t3 -r now
35
36 # Trap KeyboardSignal
37 #kb::kbrequest:<insert your action here>
38
39 # When our UPS tells us power has failed, assume we have a few minutes
40 # of power left.  Schedule a shutdown for 2 minutes from now.
41 # This does, of course, assume you have powerd installed and your
42 # UPS connected and working correctly.
43 pf::powerfail:/sbin/shutdown -f -h +2 "Power Failure; System Shutting Down"
44
45 # If power was restored before the shutdown kicked in, cancel it.
46 pr:12345:powerokwait:/sbin/shutdown -c "Power Restored; Shutdown Cancelled"
47
48 # Run agetty on serial port
49 #s0:12345:respawn:/sbin/agetty 115200 ttyS0 vt100
50 #s1:12345:respawn:/sbin/agetty 115200 ttyS1 vt100
51
52 # Run gettys in standard runlevels
53 1:12345:respawn:/sbin/mingetty --noclear tty1
54 2:2345:respawn:/sbin/mingetty tty2
55 3:2345:respawn:/sbin/mingetty tty3
56 4:2345:respawn:/sbin/mingetty tty4
57 #5:2345:respawn:/sbin/mingetty tty5
58 #6:2345:respawn:/sbin/mingetty tty6
59 #7:2345:respawn:/sbin/mingetty tty7
60 #8:2345:respawn:/sbin/mingetty tty8
61 #9:2345:respawn:/sbin/mingetty tty9
62 #10:2345:respawn:/sbin/mingetty tty10
63 #11:2345:respawn:/sbin/mingetty tty11
64 #12:2345:respawn:/sbin/mingetty tty12
65
66 # Examples
67 #9:2345:respawn:/sbin/mingetty --mono tty9
68 #10:2345:respawn:/sbin/mingetty --remote-host=some.host.in.net.pl tty10
69
70 # Run xdm in runlevel 5
71 #x:5:respawn:/usr/bin/X11/xdm -nodaemon
This page took 0.088357 seconds and 3 git commands to generate.