301161a7a4
This makes the URIs shorter and dynamic: whatever the default branch the repo uses will be used.
105 lines
2.1 KiB
Groff
105 lines
2.1 KiB
Groff
.\" Copyright (c) 2007-2015 The OpenRC Authors.
|
|
.\" See the Authors file at the top-level directory of this distribution and
|
|
.\" https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
|
|
.\"
|
|
.\" This file is part of OpenRC. It is subject to the license terms in
|
|
.\" the LICENSE file found in the top-level directory of this
|
|
.\" distribution and at https://github.com/OpenRC/openrc/blob/HEAD/LICENSE
|
|
.\" This file may not be copied, modified, propagated, or distributed
|
|
.\" except according to the terms contained in the LICENSE file.
|
|
.\"
|
|
.Dd May 1, 2009
|
|
.Dt RC-SERVICE 8 SMM
|
|
.Os OpenRC
|
|
.Sh NAME
|
|
.Nm rc-service
|
|
.Nd locate and run an OpenRC service with the given arguments
|
|
.Sh SYNOPSIS
|
|
.Nm
|
|
.Op Fl c , -ifcrashed
|
|
.Ar service cmd
|
|
.Op Ar ...
|
|
.Nm
|
|
.Fl d , -debug
|
|
.Ar service cmd
|
|
.Op Ar ...
|
|
.Nm
|
|
.Fl D , -nodeps
|
|
.Ar service cmd
|
|
.Op Ar ...
|
|
.Nm
|
|
.Op Fl i , -ifexists
|
|
.Ar service cmd
|
|
.Op Ar ...
|
|
.Nm
|
|
.Op Fl I , -ifinactive
|
|
.Ar service cmd
|
|
.Op Ar ...
|
|
.Nm
|
|
.Op Fl N , -ifnotstarted
|
|
.Ar service cmd
|
|
.Op Ar ...
|
|
.Nm
|
|
.Op Fl s , -ifstarted
|
|
.Ar service cmd
|
|
.Op Ar ...
|
|
.Nm
|
|
.Op Fl S , -ifstopped
|
|
.Ar service cmd
|
|
.Op Ar ...
|
|
.Nm
|
|
.Fl e , -exists
|
|
.Ar service
|
|
.Nm
|
|
.Fl Z , -dry-run
|
|
.Ar service cmd
|
|
.Op Ar ...
|
|
.Nm
|
|
.Fl l , -list
|
|
.Nm
|
|
.Fl r , -resolve
|
|
.Ar service
|
|
.Sh DESCRIPTION
|
|
Service scripts could be in different places on different systems.
|
|
.Nm
|
|
locates the specified service and runs it with the given arguments.
|
|
If
|
|
.Fl i , -ifexists
|
|
is given then
|
|
.Nm
|
|
returns 0 even if the service does not exist.
|
|
If
|
|
.Fl I , -ifinactive
|
|
or
|
|
.Fl N , -ifnotstarted
|
|
is given then
|
|
.Nm
|
|
returns 0 if the service exists but is in the wrong state.
|
|
.Pp
|
|
If given the
|
|
.Fl l , -list
|
|
argument then
|
|
.Nm
|
|
will list all available services.
|
|
.Pp
|
|
.Fl e , -exists
|
|
return 0 if it can find
|
|
.Ar service ,
|
|
otherwise -1.
|
|
.Fl r , -resolve
|
|
does the same and also prints the full path of the service to stdout.
|
|
.Pp
|
|
.Fl d , -debug
|
|
sets -x when running the service script(s).
|
|
.Pp
|
|
.Fl D , -nodeps
|
|
ignores dependencies when running the service.
|
|
.Pp
|
|
.Fl Z , -dry-run
|
|
displays commands rather than executing them.
|
|
.Sh SEE ALSO
|
|
.Xr openrc 8 ,
|
|
.Xr stdout 3
|
|
.Sh AUTHORS
|
|
.An Roy Marples <roy@marples.name>
|