2018-01-13 01:40:42 +05:30
|
|
|
Using S6 with OpenRC
|
|
|
|
====================
|
2015-05-12 04:37:28 +05:30
|
|
|
|
|
|
|
Beginning with OpenRC-0.16, we support using the s6 supervision suite
|
2016-07-23 02:54:49 +05:30
|
|
|
from Skarnet Software in place of start-stop-daemon for monitoring
|
2015-05-12 04:37:28 +05:30
|
|
|
daemons [1].
|
|
|
|
|
|
|
|
## Setup
|
|
|
|
|
|
|
|
Documenting s6 in detail is beyond the scope of this guide. It will
|
|
|
|
document how to set up OpenRC services to communicate with s6.
|
|
|
|
|
|
|
|
### Use Default start, stop and status functions
|
|
|
|
|
|
|
|
If you write your own start, stop and status functions in your service
|
|
|
|
script, none of this will work. You must allow OpenRC to use the default
|
|
|
|
functions.
|
|
|
|
|
|
|
|
### Dependencies
|
|
|
|
|
|
|
|
All OpenRC service scripts that want their daemons monitored by s6
|
|
|
|
should have the following line added to their dependencies to make sure
|
|
|
|
the s6 scan directory is being monitored.
|
|
|
|
|
|
|
|
need s6-svscan
|
|
|
|
|
|
|
|
### Variable Settings
|
|
|
|
|
|
|
|
The most important setting is the supervisor variable. At the top of
|
|
|
|
your service script, you should set this variable as follows:
|
|
|
|
|
|
|
|
supervisor=s6
|
|
|
|
|
|
|
|
Several other variables affect s6 services. They are documented on the
|
|
|
|
openrc-run man page, but I will list them here for convenience:
|
|
|
|
|
2015-05-14 22:10:29 +05:30
|
|
|
s6_service_path - the path to the s6 service directory. The default is
|
|
|
|
/var/svc.d/$RC_SVCNAME.
|
2015-05-12 04:37:28 +05:30
|
|
|
|
2015-05-14 22:10:29 +05:30
|
|
|
s6_svwait_options_start - the options to pass to s6-svwait when starting
|
|
|
|
the service. If this is not set, s6-svwait will not be called.
|
2015-05-12 04:37:28 +05:30
|
|
|
|
2017-11-17 03:05:35 +05:30
|
|
|
s6_force_kill - Should we try to force kill this service if the
|
|
|
|
s6_service_timeout_stop timeout expires when shutting down this service?
|
|
|
|
The default is yes.
|
|
|
|
|
2015-05-14 22:10:29 +05:30
|
|
|
s6_service_timeout_stop - the amount of time, in milliseconds, s6-svc
|
|
|
|
should wait for a service to go down when stopping.
|
2015-05-12 04:37:28 +05:30
|
|
|
|
|
|
|
This is very early support, so feel free to file bugs if you have
|
|
|
|
issues.
|
|
|
|
|
2015-05-29 11:40:39 +05:30
|
|
|
[1] http://www.skarnet.org/software/s6
|