diff options
author | Ian Stakenvicius <axs@gentoo.org> | 2015-10-26 15:20:58 -0400 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2015-11-12 12:32:45 -0600 |
commit | 33d3f33b3ca7dd2ce616b8182d588d0743c2f124 (patch) | |
tree | 9cd258ecf6a4787390f4c366bda04adf721bdabe /man | |
parent | ddb895b355e02c9c07b00bfaf00d1bf8a7abbc03 (diff) |
Implement "want" dependency
The want dependency is similar to the use dependency. If a service
script, for example called service1, adds "want service2" to its depend
function, OpenRC will attempt to start service2, if it exists on the
system, when service1 is started.
However, service1 will start regardless of the status of
service2.
X-Gentoo-Bug: 406021
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=406021
Diffstat (limited to 'man')
-rw-r--r-- | man/openrc-run.8 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/man/openrc-run.8 b/man/openrc-run.8 index 4637fd03..12c1919b 100644 --- a/man/openrc-run.8 +++ b/man/openrc-run.8 @@ -175,6 +175,8 @@ will refuse to stop until any services that need it have stopped. .It Ic use The service will attempt to start any services we use that have been added to the runlevel. +.It Ic want +The service will attempt to start any services we want. .It Ic after The service will start after these services and stop before these services. .It Ic before |