diff options
author | Gerrit Pape <pape@smarden.org> | 2005-08-04 18:50:10 +0000 |
---|---|---|
committer | Gerrit Pape <pape@smarden.org> | 2005-08-04 18:50:10 +0000 |
commit | e99bbdcb0d7f846f39fb1ee10879ea9d19f99d55 (patch) | |
tree | a2a49df34cbb0f4d77aa4ce169fd3be8d2f4739b | |
parent | 021005e88b518c6bf2f39056e3d2d3acce217af9 (diff) | |
download | runit-e99bbdcb0d7f846f39fb1ee10879ea9d19f99d55.tar.gz runit-e99bbdcb0d7f846f39fb1ee10879ea9d19f99d55.tar.xz runit-e99bbdcb0d7f846f39fb1ee10879ea9d19f99d55.zip |
* doc/runscripts.html: typo; openssh needs absolute path (thx Kevin Berry).
-rw-r--r-- | doc/runscripts.html | 6 | ||||
-rw-r--r-- | package/CHANGES | 2 | ||||
-rw-r--r-- | package/TODO | 1 |
3 files changed, 6 insertions, 3 deletions
diff --git a/doc/runscripts.html b/doc/runscripts.html index b095631..9d274f6 100644 --- a/doc/runscripts.html +++ b/doc/runscripts.html @@ -441,7 +441,7 @@ process state for those <i>getties</i>. (<i>LFS</i>) <pre> #!/bin/sh - exec 2>,&1 + exec 2>&1 exec tcpsvd -l0 -u nobody 127.0.0.1 110 hotwayd </pre> <hr> @@ -806,11 +806,11 @@ to be set up. </pre> <hr> <h3><a name="sshd">A <tt>sshd</tt> run script</a></h3> -(<i>Debian woody</i>, sshd version OpenSSH_2.9p2) +(<i>Debian</i>) <pre> #!/bin/sh exec 2>&1 - exec sshd -D -e + exec /usr/sbin/sshd -D -e </pre> This service needs a <a href="http://cr.yp.to/daemontools/faq/create.html#runlog">log service</a> diff --git a/package/CHANGES b/package/CHANGES index e194fcf..dda8c0e 100644 --- a/package/CHANGES +++ b/package/CHANGES @@ -1,3 +1,5 @@ + * doc/runscripts.html: typo; openssh needs absolute path (thx Kevin Berry). + runit 1.3.0 Sun, 24 Jul 2005 16:50:55 +0000 * man/runsv.8: typo; no longer document the e control character; clarify diff --git a/package/TODO b/package/TODO index 1cacc29..6c2bd6c 100644 --- a/package/TODO +++ b/package/TODO @@ -5,3 +5,4 @@ have sv replace runsvctrl, runsvstat, svwaitdown, svwaitup rewrite doc/dependencies.html: weak/string deps runsv: provide ./run's return code to ./finish, count startups of ./run and provide number to ./run +chpst: -u user[:group0[:group1 ...]] |