diff options
author | Gerrit Pape <pape@smarden.org> | 2003-12-30 18:13:59 +0000 |
---|---|---|
committer | Gerrit Pape <pape@smarden.org> | 2003-12-30 18:13:59 +0000 |
commit | 511c62dd7da3c76e832c9bbcdd60f553a715c05c (patch) | |
tree | 4842b8f9706fb54f1a3767c5847ef122f91c8332 /doc/runscripts.html | |
parent | f63edb2b0fcc3d6dc4523debc34cc588e95382ca (diff) | |
download | runit-511c62dd7da3c76e832c9bbcdd60f553a715c05c.tar.gz runit-511c62dd7da3c76e832c9bbcdd60f553a715c05c.tar.xz runit-511c62dd7da3c76e832c9bbcdd60f553a715c05c.zip |
add run scripts from Thomas Schwinge.
Diffstat (limited to 'doc/runscripts.html')
-rw-r--r-- | doc/runscripts.html | 45 |
1 files changed, 44 insertions, 1 deletions
diff --git a/doc/runscripts.html b/doc/runscripts.html index 87d57ff..4637d85 100644 --- a/doc/runscripts.html +++ b/doc/runscripts.html @@ -21,7 +21,8 @@ an operating system not stated here, please Thanks go to the following people for contributing run scripts: Alessandro Bono, Robin S. Socha, Claus Alboege, Paul Jarc, clemens fischer, Jesse Cablek, Lukas Beeler, Thomas Baden, Ralf Hildebrandt, Antonio Dias, -Erich Schubert, Lang Martin, Tomasz Nidecki, Marek Bartnikowski. +Erich Schubert, Lang Martin, Tomasz Nidecki, Marek Bartnikowski, +Thomas Schwinge. <hr> <a href="#atftpd">atftpd</a><br> <a href="#apache">apache</a><br> @@ -43,11 +44,14 @@ Erich Schubert, Lang Martin, Tomasz Nidecki, Marek Bartnikowski. <a href="#inn">inn</a><br> <a href="#jabberd">jabberd</a><br> <a href="#klogd">klogd</a><br> +<a href="#leafnode">leafnode</a><br> <a href="#loglinuxkernel">logging Linux kernel messages</a><br> <a href="http://multivac.cwru.edu./fdtools/grabconsole/"> logging console messages</a><br> +<a href="#minidentd">minidentd</a><br> <a href="#mysql">mysql</a><br> <a href="#ntpd">ntpd</a><br> +<a href="#polipo">polipo</a><br> <a href="#pop3-ssl">pop3-ssl</a><br> <a href="#pop3vscan">pop3vscan</a><br> <a href="#postgresql">postgresql</a><br> @@ -331,6 +335,19 @@ to be set up. exec /sbin/klogd -n </pre> <hr> +<h3><a name="leafnode">A <tt>leafnode</tt> run script</a></h3> +(<i>Linux</i>) +<pre> + #!/bin/sh + exec 2>&1 + exec envuidgid news \ + tcpserver -v -x rules.cdb -c 10 -U 0 119 \ + leafnode +</pre> +This service needs a +<a href="http://cr.yp.to/daemontools/faq/create.html#runlog">log service</a> +to be set up. +<hr> <h3><a name="loglinuxkernel"> A run script for <tt>logging Linux kernel messages with multilog</tt></a></h3> (<i>Linux</i>) @@ -341,6 +358,20 @@ A run script for <tt>logging Linux kernel messages with multilog</tt></a></h3> multilog t n64 ./main </pre> <hr> +<h3><a name="minidentd">A <tt>minidentd</tt> run script</a></h3> +(<i>Linux</i>) +<pre> + #!/bin/sh + exec 2>&1 + exec envuidgid nobody \ + tcpserver -vUR 0 113 \ + timeoutafter 60 \ + minidentd -v +</pre> +This service needs a +<a href="http://cr.yp.to/daemontools/faq/create.html#runlog">log service</a> +to be set up. +<hr> <h3><a name="mysql">A <tt>mysql</tt> run script</a></h3> (<i>SunOS</i>) <pre> @@ -374,6 +405,18 @@ A run script for <tt>logging Linux kernel messages with multilog</tt></a></h3> ntpd -n -p /var/run/ntpd.pid </pre> <hr> +<h3><a name="polipo">A <tt>polipo</tt> run script</a></h3> +(<i>Linux</i>) +<pre> + #!/bin/sh + exec 2>&1 + exec setuidgid polipo \ + polipo -c config forbiddenFile="`pwd`"/forbidden diskCacheRoot="`pwd`"/cache +</pre> +This service needs a +<a href="http://cr.yp.to/daemontools/faq/create.html#runlog">log service</a> +to be set up. +<hr> <h3><a name="pop3-ssl">A <tt>pop3-ssl</tt> run script</a></h3> (<i>BSD</i>) <pre> |