runit

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit d553fa4f68b6ffacc58a6c309ae4ee6b8660f306
parent 0637d864d1776e7aa401d97ca7dd678482430c4b
Author: Gerrit Pape <pape@smarden.org>
Date:   Wed,  7 Oct 2009 02:33:50 +0000

  * doc/useinit.html: update description on how to use with upstart
    (thx Gabriel de Perthuis).

Diffstat:
Mdoc/useinit.html | 21+++++++++++----------
Mpackage/CHANGES | 2++
2 files changed, 13 insertions(+), 10 deletions(-)

diff --git a/doc/useinit.html b/doc/useinit.html @@ -48,21 +48,22 @@ and tell <i>init</i> to re-read its configuration, e.g.: <a name="upstart"><h2>Using with sysvinit and upstart</h2></a> If your system uses a sysvinit alike init scheme that utilizes upstart instead of inittab, and which has start and stop scripts located in -<tt>/etc/event.d</tt>, do: +<tt>/etc/init/</tt>, do: <pre> - # cat >/etc/event.d/SV <<\EOT - # for runit - manage /sbin/runsvdir-start - start on runlevel-2 - start on runlevel-3 - start on runlevel-4 - start on runlevel-5 + # cat >/etc/init/runsvdir.conf <<\EOT + # for runit - manage /usr/sbin/runsvdir-start + start on runlevel 2 + start on runlevel 3 + start on runlevel 4 + start on runlevel 5 stop on shutdown - respawn /sbin/runsvdir-start + respawn + exec /usr/sbin/runsvdir-start EOT </pre> -and tell init to re-read its configuration, e.g.: +and tell init to start the new service, e.g.: <pre> - # init q + # start runsvdir </pre> <hr> <a name="bsd"><h2>Using with *BSD init</h2></a> diff --git a/package/CHANGES b/package/CHANGES @@ -2,6 +2,8 @@ * doc/index.html: add deepOfix Mail Server to list of distributions that include runit (thx Debayan Banerjee). + * doc/useinit.html: update description on how to use with upstart + (thx Gabriel de Perthuis). 2.1.1 Sun, 04 Oct 2009 20:28:38 +0000