Drop main() prototype. Syncs with NetBSD-8
[minix.git] / usr.sbin / service / service.8
blobfaf62f458b6eb3c806288331301a0c5fd5f282d7
1 .\"     $NetBSD: service.8,v 1.4 2015/04/02 18:41:22 ast Exp $
2 .\"
3 .\" Copyright (c) 2009 Douglas Barton
4 .\" All rights reserved.
5 .\"
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\"    notice, this list of conditions and the following disclaimer in the
13 .\"    documentation and/or other materials provided with the distribution.
14 .\"
15 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 .\" SUCH DAMAGE.
26 .\"
27 .Dd March 20, 2015
28 .Dt SERVICE 8
29 .Os
30 .Sh NAME
31 .Nm service
32 .Nd run or list system services
33 .Sh SYNOPSIS
34 .Nm
35 .Op Fl elv
36 .Nm
37 .Op Fl ev
38 .Ar rc_script_name1 Op Ar rc_script_name2 Op Ar ...
39 .Nm
40 .Op Fl v
41 .Ar rc_script_name action
42 .Sh DESCRIPTION
43 The
44 .Nm
45 command is a simple interface to the services startup system.
46 .Pp
47 Its purpose is to list the services or invoke actions on them
48 as provided by the
49 .Ev rc.d
50 scripts.
51 When used to invoke
52 .Ev rc.d
53 scripts,
54 .Nm
55 will set the same environment that is used at boot time.
56 .Pp
57 The options are as follows:
58 .Bl -tag -width F1
59 .It Fl e
60 List services that are enabled.
61 The list of scripts is compiled using
62 .Xr rcorder 8
63 the same way as is done in
64 .Xr rc 8 ;
65 each script is first checked for an
66 .Qq rcvar
67 assignment and if present,
68 checked to see if it is enabled.
69 If one or more
70 .Ar rc_script_name
71 are specified, only those are checked.
72 The
73 .Ar rc_script_name
74 arguments are always specified without a path prefix.
75 .It Fl l
76 List all files in
77 .Pa /etc/rc.d
78 (the default of
79 .Ev rc_directories as defined in
80 .Xr rc.conf 5 ) .
81 A script will be listed unless it has the
82 .Qq nostart
83 keyword enabled.
84 .It Fl v
85 Report what
86 .Ev rc_directories
87 are defined or in which directory the
88 .Ev rc.d script
89 was found when an
90 .Ar action
91 is invoked.
92 .El
93 .Sh ENVIRONMENT
94 When used to invoke
95 .Ev rc.d scripts, the
96 .Nm
97 command sets
98 .Ev umask
100 .Fa 022 ,
101 .Ev HOME
103 .Pa / ,
105 .Ev PATH
107 .Pa /sbin:/bin:/usr/sbin:/usr/bin
108 which is how they are set in
109 .Pa /etc/rc
110 at boot time.
112 .Ar action
113 is typically one of
114 .Ar start ,
115 .Ar restart ,
116 .Ar status ,
117 or any other argument supported by the
118 .Fa rc_script_name .
119 .Sh EXIT STATUS
120 .Ex -std
121 .Sh EXAMPLES
122 These are typical usages of the
124 command:
125 .Bd -literal
126 # service sshd restart
127 Stopping sshd.
128 Starting sshd.
130 .Bd -literal
131 $ service -v inetd status
132 inetd is located in /etc/rc.d
133 inetd is running as pid 1713.
135 .Bd -literal
136 $ service -ve ccd motd hostapd my_pkg
137 rc_directories is /etc/rc.d /usr/pkg/etc/rc.d
138 /etc/rc.d/ccd
139 /usr/pkg/etc/rc.d/my_pkg
140 /etc/rc.d/motd
143 In the last example,
144 .Xr hostapd 8
145 was apparently left disabled and the additional directory
146 .Pa /usr/pkg/etc/rc.d
147 was configured by redefining the variable
148 .Ev rc_directories
150 .Pa rc.conf ;
151 further,
152 .Sy my_pkg=yes
153 must have also been set.
154 .Sh SEE ALSO
155 .Xr rc.conf 5 ,
156 .Xr rc 8 ,
157 .Xr rcorder 8
158 .Sh HISTORY
161 utility first appeared in
162 .Nx 7.0 .
163 .Sh AUTHORS
164 .An -nosplit
165 Written for
168 .An Douglas Barton Aq Mt dougb@FreeBSD.org .
170 Adapted and extended to
173 .An Adrian Steinmann Aq Mt ast@marabu.ch .