summary refs log tree commit diff
path: root/man/runit.8
blob: 4144ca22e38576bf8da352584181ba5544ef6c07 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
.TH runit 8
.SH NAME
runit \- the UNIX process no 1
.SH SYNOPSIS
.B runit
.SH DESCRIPTION
.B runit
must be run as Unix process no 1. It performs the system's
booting, running, and shutdown in three Stages:
.SH STAGE 1
.B runit
runs
.I /etc/runit/1
and waits for it to terminate. The system's one time tasks are done here.
.SH STAGE 2
.B runit
runs
.IR /etc/runit/2 ,
which should not return until system shutdown; if it crashes, it will be
restarted. Normally
.I /etc/runit/2
starts
.BR svscanboot (8).
.B runit
is able to handle the ctrl-alt-del keyboard request in Stage 2, see below.
.SH STAGE 3
If
.B runit
is told to shutdown the system, or the Stage 2 returns without errors, it
terminates Stage 2 if it is running, and runs
.IR /etc/runit/3 .
The systems tasks to shutdown and halt or reboot are done here.
Normally in Stage 3
.I /etc/runit/3
checks for the file
.IR /etc/runit/reboot .
If it exists, the system is rebooted, it is halted otherwise.
.SH CTRL-ALT-DEL
If
.B runit
receives the ctrl-alt-del keyboard request and the file
.I /etc/runit/ctrlaltdel
exists,
.B runit
runs
.IR /etc/runit/ctrlaltdel ,
waits for it to terminate and then enters Stage 3 for system shutdown.
.SH SIGNALS
.B runit
only accepts signals in Stage 2.
.P
If
.B runit
receives a CONT signal and the file
.I /etc/runit/stopit
exists,
.B runit
is told to shutdown the system.
.P
if
.B runit
receives an INT signal, a ctrl-alt-del keyboard request is triggered.
.SH SEE ALSO
init(8),
runit-halt(8),
runit-reboot(8)
.SH AUTHOR
Gerrit Pape <pape@smarden.org>