diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2015-03-06 19:36:09 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2015-03-06 19:36:09 +0000 |
commit | 5d169a719b1614774a86b837b4bc9a7c41fa1110 (patch) | |
tree | 298e298f76ed1f2560c8d392b6a26bf7baa75143 /doc | |
parent | c8edbcd86c1f4157e3998fb0d81c9a576b0f1f0a (diff) | |
download | s6-portable-utils-5d169a719b1614774a86b837b4bc9a7c41fa1110.tar.xz |
- Added new options to s6-pausev2.0.4.0
- version: 2.0.4.0
Diffstat (limited to 'doc')
-rw-r--r-- | doc/index.html | 2 | ||||
-rw-r--r-- | doc/s6-pause.html | 27 | ||||
-rw-r--r-- | doc/upgrade.html | 6 |
3 files changed, 28 insertions, 7 deletions
diff --git a/doc/index.html b/doc/index.html index 6f18572..54a515c 100644 --- a/doc/index.html +++ b/doc/index.html @@ -76,7 +76,7 @@ library. </li> <ul> <li> The current released version of s6-portable-utils is -<a href="s6-portable-utils-2.0.3.0.tar.gz">2.0.3.0</a>. </li> +<a href="s6-portable-utils-2.0.4.0.tar.gz">2.0.4.0</a>. </li> <li> Alternatively, you can checkout a copy of the s6-portable-utils git repository: <pre> git clone git://git.skarnet.org/s6-portable-utils </pre> </li> </ul> diff --git a/doc/s6-pause.html b/doc/s6-pause.html index edb129f..3e0cbf8 100644 --- a/doc/s6-pause.html +++ b/doc/s6-pause.html @@ -24,16 +24,31 @@ <h2> Interface </h2> <pre> - s6-pause + s6-pause [ -t ] [ -h ] [ -a ] [ -q ] [ -b ] [ -i ] [ -p <em>signals</em> ] </pre> +<h2> Options </h2> + +<ul> + <li> <tt>-t</tt> : ignore SIGTERM </li> + <li> <tt>-h</tt> : ignore SIGHUP </li> + <li> <tt>-a</tt> : ignore SIGALRM </li> + <li> <tt>-q</tt> : ignore SIGQUIT </li> + <li> <tt>-b</tt> : ignore SIGABRT </li> + <li> <tt>-i</tt> : ignore SIGINT </li> + <li> <tt>-p <em>signals</em></tt> : ignore the signals +listed in <em>signals</em>, which must be a comma-separated list of +signal numbers. </li> +</ul> + <h2> Usage notes </h2> -<p> - s6-pause is one of the smallest possible long-lived programs. It can be -used to emulate a running service with the least possible resource -consumption. -</p> +<ul> + <li> s6-pause is one of the smallest possible long-lived programs. It uses +as few resources as the kernel will allow. </li> + <li> The options can be used to wait for a specific signal without being +killed by others. </li> +</ul> </body> </html> diff --git a/doc/upgrade.html b/doc/upgrade.html index 1b5cdbb..b3c9f87 100644 --- a/doc/upgrade.html +++ b/doc/upgrade.html @@ -17,6 +17,12 @@ <h1> What has changed in s6-portable-utils </h1> +<h2> in 2.0.4.0 </h2> + +<ul> + <li> New options in <a href="s6-pause.html">s6-pause</a>. </li> +</ul> + <h2> in 2.0.3.0 </h2> <ul> |