xref: /freebsd/share/man/man8/rc.8 (revision d6b92ffa)
1.\" Copyright (c) 1980, 1991, 1993
2.\"	The Regents of the University of California.  All rights reserved.
3.\"
4.\" Portions of this manual page are Copyrighted by
5.\"	The NetBSD Foundation.
6.\"
7.\" Redistribution and use in source and binary forms, with or without
8.\" modification, are permitted provided that the following conditions
9.\" are met:
10.\" 1. Redistributions of source code must retain the above copyright
11.\"    notice, this list of conditions and the following disclaimer.
12.\" 2. Redistributions in binary form must reproduce the above copyright
13.\"    notice, this list of conditions and the following disclaimer in the
14.\"    documentation and/or other materials provided with the distribution.
15.\" 3. Neither the name of the University nor the names of its contributors
16.\"    may be used to endorse or promote products derived from this software
17.\"    without specific prior written permission.
18.\"
19.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29.\" SUCH DAMAGE.
30.\"
31.\"     @(#)rc.8	8.2 (Berkeley) 12/11/93
32.\" $FreeBSD$
33.\"
34.Dd April 25, 2017
35.Dt RC 8
36.Os
37.Sh NAME
38.Nm rc
39.Nd command scripts for auto-reboot and daemon startup
40.Sh SYNOPSIS
41.Nm
42.Nm rc.conf
43.Nm rc.conf.local
44.Nm rc.d/
45.Nm rc.firewall
46.Nm rc.local
47.Nm rc.shutdown
48.Nm rc.subr
49.Sh DESCRIPTION
50The
51.Nm
52utility is the command script which controls the automatic boot process
53after being called by
54.Xr init 8 .
55The
56.Nm rc.local
57script contains commands which are pertinent only
58to a specific site.
59Typically, the
60.Pa /usr/local/etc/rc.d/
61mechanism is used instead of
62.Nm rc.local
63these days but if
64you want to use
65.Nm rc.local ,
66it is still supported.
67In this case, it should source
68.Pa /etc/rc.conf
69and contain additional custom startup code for your system.
70The best way to handle
71.Nm rc.local ,
72however, is to separate it out into
73.Nm rc.d/
74style scripts and place them under
75.Pa /usr/local/etc/rc.d/ .
76The
77.Nm rc.conf
78file contains the global system configuration information referenced
79by the startup scripts, while
80.Nm rc.conf.local
81contains the local system configuration.
82See
83.Xr rc.conf 5
84for more information.
85.Pp
86The
87.Nm rc.d/
88directories contain scripts which will be automatically
89executed at boot time and shutdown time.
90.Ss Operation of Nm
91.Bl -enum
92.It
93If autobooting, set
94.Va autoboot Ns = Ns Li yes
95and enable a flag
96.Pq Va rc_fast Ns = Ns Li yes ,
97which prevents the
98.Nm rc.d/
99scripts from performing the check for already running processes
100(thus speeding up the boot process).
101This
102.Va rc_fast Ns = Ns Li yes
103speedup will not occur when
104.Nm
105is started up after exiting the single-user shell.
106.It
107Determine whether the system is booting diskless,
108and if so run the
109.Pa /etc/rc.initdiskless
110script.
111.It
112Source
113.Pa /etc/rc.subr
114to load various
115.Xr rc.subr 8
116shell functions to use.
117.It
118Load the configuration files.
119.It
120Determine if booting in a jail,
121and add
122.Dq Li nojail
123(no jails allowed) or
124.Dq Li nojailvnet
125(only allow vnet-enabled jails) to the list of KEYWORDS to skip in
126.Xr rcorder 8 .
127.It
128If the file
129.Va ${firstboot_sentinel}
130does not exist, add
131.Dq Li firstboot
132to the list of KEYWORDS to skip in
133.Xr rcorder 8 .
134.It
135Invoke
136.Xr rcorder 8
137to order the files in
138.Pa /etc/rc.d/
139that do not have a
140.Dq Li nostart
141KEYWORD (refer to
142.Xr rcorder 8 Ns 's
143.Fl s
144flag).
145.It
146Call each script in turn using
147.Fn run_rc_script
148(from
149.Xr rc.subr 8 ) ,
150which sets
151.Va $1
152to
153.Dq Li start ,
154and sources the script in a subshell.
155If the script has a
156.Pa .sh
157suffix then it is sourced directly into the current shell.
158Stop processing when the script that is the value of the
159.Va $early_late_divider
160has been run.
161.It
162Check again to see if the file
163.Va ${firstboot_sentinel}
164exists (in case it is located on a newly mounted file system)
165and adjust the list of KEYWORDs to skip appropriately.
166.It
167Re-run
168.Xr rcorder 8 ,
169this time including the scripts in the
170.Va $local_startup
171directories.
172Ignore everything up to the
173.Va $early_late_divider ,
174then start executing the scripts as described above.
175.It
176If the file
177.Va ${firstboot_sentinel}
178exists, delete it.
179If the file
180.Va ${firstboot_sentinel}-reboot
181also exists (because it was created by a script), then delete it and reboot.
182.El
183.Ss Operation of Nm rc.shutdown
184.Bl -enum
185.It
186Source
187.Pa /etc/rc.subr
188to load various
189.Xr rc.subr 8
190shell functions to use.
191.It
192Load the configuration files.
193.It
194Invoke
195.Xr rcorder 8
196to order the files in
197.Pa /etc/rc.d/
198and the
199.Va $local_startup
200directories
201that have a
202.Dq Li shutdown
203KEYWORD (refer to
204.Xr rcorder 8 Ns 's
205.Fl k
206flag),
207reverse that order, and assign the result to a variable.
208.It
209Call each script in turn using
210.Fn run_rc_script
211(from
212.Xr rc.subr 8 ) ,
213which sets
214.Va $1
215to
216.Dq Li stop ,
217and sources the script in a subshell.
218If the script has a
219.Pa .sh
220suffix then it is sourced directly into the current shell.
221.El
222.Ss Contents of Nm rc.d/
223.Nm rc.d/
224is located in
225.Pa /etc/rc.d/ .
226The following file naming conventions are currently used in
227.Nm rc.d/ :
228.Bl -tag -width ".Pa ALLUPPERCASE" -offset indent
229.It Pa ALLUPPERCASE
230Scripts that are
231.Dq placeholders
232to ensure that certain operations are performed before others.
233In order of startup, these are:
234.Bl -tag -width ".Pa NETWORKING"
235.It Pa NETWORKING
236Ensure basic network services are running, including general
237network configuration.
238.It Pa SERVERS
239Ensure basic services
240exist for services that start early (such as
241.Pa nisdomain ) ,
242because they are required by
243.Pa DAEMON
244below.
245.It Pa DAEMON
246Check-point before all general purpose daemons such as
247.Pa lpd
248and
249.Pa ntpd .
250.It Pa LOGIN
251Check-point before user login services
252.Pa ( inetd
253and
254.Pa sshd ) ,
255as well as services which might run commands as users
256.Pa ( cron
257and
258.Pa sendmail ) .
259.El
260.It Pa foo.sh
261Scripts that are to be sourced into the current shell rather than a subshell
262have a
263.Pa .sh
264suffix.
265Extreme care must be taken in using this, as the startup sequence will
266terminate if the script does.
267.It Pa bar
268Scripts that are sourced in a subshell.
269The boot does not stop if such a script terminates with a non-zero status,
270but a script can stop the boot if necessary by invoking the
271.Fn stop_boot
272function (from
273.Xr rc.subr 8 ) .
274.El
275.Pp
276Each script should contain
277.Xr rcorder 8
278keywords, especially an appropriate
279.Dq Li PROVIDE
280entry, and if necessary
281.Dq Li REQUIRE
282and
283.Dq Li BEFORE
284keywords.
285.Pp
286Each script is expected to support at least the following arguments, which
287are automatically supported if it uses the
288.Fn run_rc_command
289function:
290.Bl -tag -width ".Cm restart" -offset indent
291.It Cm start
292Start the service.
293This should check that the service is to be started as specified by
294.Xr rc.conf 5 .
295Also checks if the service is already running and refuses to start if
296it is.
297This latter check is not performed by standard
298.Fx
299scripts if the system is starting directly to multi-user mode, to
300speed up the boot process.
301If
302.Cm forcestart
303is given, ignore the
304.Xr rc.conf 5
305check and start anyway.
306.It Cm stop
307If the service is to be started as specified by
308.Xr rc.conf 5 ,
309stop the service.
310This should check that the service is running and complain if it is not.
311If
312.Cm forcestop
313is given, ignore the
314.Xr rc.conf 5
315check and attempt to stop.
316.It Cm restart
317Perform a
318.Cm stop
319then a
320.Cm start .
321.It Cm status
322If the script starts a process (rather than performing a one-off
323operation), show the status of the process.
324Otherwise it is not necessary to support this argument.
325Defaults to displaying the process ID of the program (if running).
326.It Cm describe
327Print a short description of what the script does.
328.It Cm extracommands
329Print the script's non-standard commands.
330.It Cm poll
331If the script starts a process (rather than performing a one-off
332operation), wait for the command to exit.
333Otherwise it is not necessary to support this argument.
334.It Cm enabled
335Return 0 if the service is enabled and 1 if it is not.
336This command does not print anything.
337.It Cm rcvar
338Display which
339.Xr rc.conf 5
340variables are used to control the startup of the service (if any).
341.El
342.Pp
343If a script must implement additional commands it can list them in
344the
345.Va extra_commands
346variable, and define their actions in a variable constructed from
347the command name (see the
348.Sx EXAMPLES
349section).
350.Pp
351The following key points apply to old-style scripts in
352.Pa /usr/local/etc/rc.d/ :
353.Bl -bullet
354.It
355Scripts are only executed if their
356.Xr basename 1
357matches the shell globbing pattern
358.Pa *.sh ,
359and they are executable.
360Any other files or directories present within the directory are silently
361ignored.
362.It
363When a script is executed at boot time, it is passed the string
364.Dq Li start
365as its first and only argument.
366At shutdown time, it is passed the string
367.Dq Li stop
368as its first and only argument.
369All
370.Nm rc.d/
371scripts are expected to handle these arguments appropriately.
372If no action needs to be taken at a given time
373(either boot time or shutdown time),
374the script should exit successfully and without producing an error message.
375.It
376The scripts within each directory are executed in lexicographical order.
377If a specific order is required,
378numbers may be used as a prefix to the existing filenames,
379so for example
380.Pa 100.foo
381would be executed before
382.Pa 200.bar ;
383without the numeric prefixes the opposite would be true.
384.It
385The output from each script is traditionally a space character,
386followed by the name of the software package being started or shut down,
387.Em without
388a trailing newline character (see the
389.Sx EXAMPLES
390section).
391.El
392.Sh SCRIPTS OF INTEREST
393When an automatic reboot is in progress,
394.Nm
395is invoked with the argument
396.Cm autoboot .
397One of the scripts run from
398.Pa /etc/rc.d/
399is
400.Pa /etc/rc.d/fsck .
401This script runs
402.Xr fsck 8
403with option
404.Fl p
405and
406.Fl F
407to
408.Dq preen
409all the disks of minor inconsistencies resulting
410from the last system shutdown.
411If this fails, then checks/repairs of serious inconsistencies
412caused by hardware or software failure will be performed
413in the background at the end of the booting process.
414If
415.Cm autoboot
416is not set, when going from single-user to multi-user mode for example,
417the script does not do anything.
418.Pp
419The
420.Pa /etc/rc.d/local
421script can execute scripts from multiple
422.Nm rc.d/
423directories.
424The default location includes
425.Pa /usr/local/etc/rc.d/ ,
426but these may be overridden with the
427.Va local_startup
428.Xr rc.conf 5
429variable.
430.Pp
431The
432.Pa /etc/rc.d/serial
433script is used to set any special configurations for serial devices.
434.Pp
435The
436.Nm rc.firewall
437script is used to configure rules for the kernel based firewall
438service.
439It has several possible options:
440.Pp
441.Bl -tag -width ".Ar filename" -compact -offset indent
442.It Cm open
443will allow anyone in
444.It Cm client
445will try to protect just this machine
446.It Cm simple
447will try to protect a whole network
448.It Cm closed
449totally disables IP services except via
450.Pa lo0
451interface
452.It Cm UNKNOWN
453disables the loading of firewall rules
454.It Ar filename
455will load the rules in the given filename (full path required).
456.El
457.Pp
458Most daemons, including network related daemons, have their own script in
459.Pa /etc/rc.d/ ,
460which can be used to start, stop, and check the status of the service.
461.Pp
462Any architecture specific scripts, such as
463.Pa /etc/rc.d/apm
464for example, specifically check that they are on that architecture
465before starting the daemon.
466.Pp
467Following tradition, all startup files reside in
468.Pa /etc .
469.Sh FILES
470.Bl -tag -compact -width Pa
471.It Pa /etc/rc
472.It Pa /etc/rc.conf
473.It Pa /etc/rc.conf.local
474.It Pa /etc/rc.d/
475.It Pa /etc/rc.firewall
476.It Pa /etc/rc.local
477.It Pa /etc/rc.shutdown
478.It Pa /etc/rc.subr
479.It Pa /var/run/dmesg.boot
480.Xr dmesg 8
481results soon after the
482.Nm
483process begins.
484Useful when
485.Xr dmesg 8
486buffer in the kernel no longer has this information.
487.El
488.Sh EXAMPLES
489The following is a minimal
490.Nm rc.d/
491style script.
492Most scripts require little more than the following.
493.Bd -literal -offset indent
494#!/bin/sh
495#
496
497# PROVIDE: foo
498# REQUIRE: bar_service_required_to_precede_foo
499
500\&. /etc/rc.subr
501
502name="foo"
503rcvar=foo_enable
504command="/usr/local/bin/foo"
505
506load_rc_config $name
507run_rc_command "$1"
508.Ed
509.Pp
510Certain scripts may want to provide enhanced functionality.
511The user may access this functionality through additional commands.
512The script may list and define as many commands at it needs.
513.Bd -literal -offset indent
514#!/bin/sh
515#
516
517# PROVIDE: foo
518# REQUIRE: bar_service_required_to_precede_foo
519# BEFORE:  baz_service_requiring_foo_to_precede_it
520
521\&. /etc/rc.subr
522
523name="foo"
524rcvar=foo_enable
525command="/usr/local/bin/foo"
526extra_commands="nop hello"
527hello_cmd="echo Hello World."
528nop_cmd="do_nop"
529
530do_nop()
531{
532	echo "I do nothing."
533}
534
535load_rc_config $name
536run_rc_command "$1"
537.Ed
538.Pp
539As all processes are killed by
540.Xr init 8
541at shutdown, the explicit
542.Xr kill 1
543is unnecessary, but is often included.
544.Sh SEE ALSO
545.Xr kill 1 ,
546.Xr rc.conf 5 ,
547.Xr init 8 ,
548.Xr rc.subr 8 ,
549.Xr rcorder 8 ,
550.Xr reboot 8 ,
551.Xr savecore 8
552.Sh HISTORY
553The
554.Nm
555utility appeared in
556.Bx 4.0 .
557