xref: /freebsd/usr.sbin/service/service.8 (revision 42249ef2)
1.\" Copyright (c) 2009 Douglas Barton
2.\" All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\"    notice, this list of conditions and the following disclaimer.
9.\" 2. Redistributions in binary form must reproduce the above copyright
10.\"    notice, this list of conditions and the following disclaimer in the
11.\"    documentation and/or other materials provided with the distribution.
12.\"
13.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23.\" SUCH DAMAGE.
24.\"
25.\" $FreeBSD$
26.\"
27.Dd May 31, 2018
28.Dt SERVICE 8
29.Os
30.Sh NAME
31.Nm service
32.Nd "control (start/stop/etc.) or list system services"
33.Sh SYNOPSIS
34.Nm
35.Op Fl j Ar jail
36.Fl e
37.Nm
38.Op Fl j Ar jail
39.Fl R
40.Nm
41.Op Fl j Ar jail
42.Op Fl v
43.Fl l
44.Nm
45.Op Fl j Ar jail
46.Op Fl v
47.Fl r
48.Nm
49.Op Fl j Ar jail
50.Op Fl v
51.Ar script
52.Ar command
53.Sh DESCRIPTION
54The
55.Nm
56command is an easy interface to the rc.d system.
57Its primary purpose is to start and stop services provided
58by the rc.d scripts.
59When used for this purpose it will set the same restricted
60environment that is in use at boot time
61.Po
62see
63.Sx ENVIRONMENT
64.Pc .
65It can also be used to list
66the scripts using various criteria.
67.Pp
68The options are as follows:
69.Bl -tag -width F1
70.It Fl e
71List services that are enabled.
72The list of scripts to check is compiled using
73.Xr rcorder 8
74the same way that it is done in
75.Xr rc 8 ,
76then that list of scripts is checked for an
77.Qq rcvar
78assignment.
79If present the script is checked to see if it is enabled.
80.It Fl j Ar jail
81Perform the given actions under the named jail.
82The
83.Ar jail
84argument can be either a jail ID or a jail name.
85.It Fl l
86List all files in
87.Pa /etc/rc.d
88and the local startup directories.
89As described in
90.Xr rc.conf 5
91this is usually
92.Pa /usr/local/etc/rc.d .
93All files will be listed whether they are an actual
94rc.d script or not.
95.It Fl r
96Generate the
97.Xr rcorder 8
98as in
99.Fl e
100above, but list all of the files, not just what is enabled.
101.It Fl R
102Restart all enabled local services.
103.It Fl v
104Be slightly more verbose.
105.El
106.Sh ENVIRONMENT
107When used to run rc.d scripts the
108.Nm
109command sets
110.Ev HOME
111to
112.Pa /
113and
114.Ev PATH
115to
116.Pa /sbin:/bin:/usr/sbin:/usr/bin
117which is how they are set in
118.Pa /etc/rc
119at boot time.
120.Sh EXIT STATUS
121.Ex -std
122.Sh EXAMPLES
123The following are examples of typical usage of the
124.Nm
125command:
126.Bd -literal -offset -ident
127service named status
128service -j dns named status
129service -rv
130.Ed
131.Pp
132The following programmable completion entry can be use in
133.Xr bash 1
134for the names of the rc.d scripts:
135.Bd -literal -offset -ident
136_service () {
137	local cur
138	cur=${COMP_WORDS[COMP_CWORD]}
139	COMPREPLY=( $( compgen -W '$( service -l )' -- $cur ) )
140	return 0
141}
142complete -F _service service
143.Ed
144.Sh SEE ALSO
145.Xr bash 1 Pq Pa ports/shells/bash ,
146.Xr rc.conf 5 ,
147.Xr rc 8 ,
148.Xr rcorder 8
149.Sh HISTORY
150The
151.Nm
152utility first appeared in
153.Fx 7.3 .
154.Sh AUTHORS
155This
156manual page was written by
157.An Douglas Barton Aq Mt dougb@FreeBSD.org .
158