-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b652489
commit 19cac41
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# /etc/inittab | ||
# | ||
# | ||
# Format for each entry: <id>:<runlevels>:<action>:<process> | ||
# | ||
# id == tty to run on, or empty for /dev/console | ||
# runlevels == ignored | ||
# action == one of sysinit, respawn, askfirst, wait, and once | ||
# process == program to run | ||
|
||
# Startup the system | ||
::sysinit:/sbin/rc-init | ||
::sysinit:/sbin/services start | ||
|
||
1::respawn:/sbin/getty --noclear 38400 tty1 | ||
2::respawn:/sbin/getty 38400 tty2 | ||
3::respawn:/sbin/getty 38400 tty3 | ||
|
||
# Stuff to do for the 3-finger salute | ||
::ctrlaltdel:/sbin/reboot | ||
|
||
# Stuff to do before rebooting | ||
::shutdown:/sbin/services stop | ||
::shutdown:/sbin/rc-shutdown |