Lines Matching +full:documentation +full:- +full:service
11 .\" documentation and/or other materials provided with the distribution.
29 .Nm service
75 .Bl -tag -width F1
137 .Ex -std
139 These are some examples of the most common service commands.
143 Enable a service, then start it:
144 .Bd -literal -offset indent
145 service sshd enable
146 service sshd start
149 Stop a service, then disable it:
150 .Bd -literal -offset indent
151 service sshd stop
152 service sshd disable
155 Start a service which is not enabled:
156 .Bd -literal -offset indent
157 service sshd onestart
160 Report the status of a service:
161 .Bd -literal -offset indent
162 service named status
165 Restart a service running in a jail:
166 .Bd -literal -offset indent
167 service -j dns named restart
170 Start a service with a specific environment variable set:
171 .Bd -literal -offset indent
172 service -E LC_ALL=C.UTF-8 named start
176 .Bd -literal -offset indent
177 service -rv
183 .Bd -literal -offset indent
184 complete service 'c/-/(e l r v)/' 'p/1/`service -l`/' \e
192 .Bd -literal -offset indent
196 COMPREPLY=( $( compgen -W '$( service -l )' -- $cur ) )
199 complete -F _service service