diff options
author | Antoine Jacoutot <ajacoutot@cvs.openbsd.org> | 2011-05-26 13:25:58 +0000 |
---|---|---|
committer | Antoine Jacoutot <ajacoutot@cvs.openbsd.org> | 2011-05-26 13:25:58 +0000 |
commit | 38161143c30204c4835f4f110c5c2c185fa07949 (patch) | |
tree | b9104b7813e7c4fdec25c536fd37ec7a77ce078d /share/man/man8 | |
parent | d06e536f7f8822a8b040747b57b6105e80ec84b8 (diff) |
BUGS: there is currently no way to know whether a background process was
successfully started so rc_start will always succeed.
ok robert@
Diffstat (limited to 'share/man/man8')
-rw-r--r-- | share/man/man8/rc.d.8 | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/share/man/man8/rc.d.8 b/share/man/man8/rc.d.8 index cf8f7ea0926..ad6018effd1 100644 --- a/share/man/man8/rc.d.8 +++ b/share/man/man8/rc.d.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: rc.d.8,v 1.10 2011/03/24 11:15:40 ajacoutot Exp $ +.\" $OpenBSD: rc.d.8,v 1.11 2011/05/26 13:25:57 ajacoutot Exp $ .\" .\" Copyright (c) 2011 Robert Nagy, Antoine Jacoutot, Ingo Schwarze .\" All rights reserved. @@ -24,7 +24,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: March 24 2011 $ +.Dd $Mdocdate: May 26 2011 $ .Dt RC.D 8 .Os .Sh NAME @@ -136,6 +136,7 @@ directory first appeared in .Ox 4.9 . .Sh BUGS +.Pp Changing .Ar daemon Ns _flags in @@ -145,3 +146,9 @@ will change the corresponding pattern used with so that .Ar actions may not work on already running processes. +.Pp +There is currently no way to know whether a background process +.Pq Va rc_bg +was successfully started so +.Fn rc_start +will always succeed in this case. |