From e41f6849e9c8d715c01146d7337c15c8854455cc Mon Sep 17 00:00:00 2001 From: Gerrit Pape Date: Fri, 30 Apr 2004 18:42:51 +0000 Subject: thx Gael Canal, Woon Wai Keen, Richard A Downing. --- doc/runscripts.html | 93 ++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 88 insertions(+), 5 deletions(-) (limited to 'doc') diff --git a/doc/runscripts.html b/doc/runscripts.html index 94c73e9..1d0f951 100644 --- a/doc/runscripts.html +++ b/doc/runscripts.html @@ -22,7 +22,7 @@ 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, -Thomas Schwinge. +Thomas Schwinge, Gael Canal, Woon Wai Keen, Richard A Downing.
atftpd
apache
@@ -30,19 +30,25 @@ Thomas Schwinge. bind9
boa
cfengine
+chrony
clamav
-courier-imap
+courier-imap
cups
dhclient
dhcpcd
dhcpd
+exim
expireproctitle
fam
+fcron
gdm
getty
+gpm
+hotwayd
identd
inn
jabberd
+keepalived
klogd
leafnode
logging Linux kernel messages
@@ -54,6 +60,7 @@ logging console messages
polipo
pop3-ssl
pop3vscan
+portmap
postgresql
ppp
proftpd
@@ -68,6 +75,7 @@ logging console messages
sshd under tcpserver
statd, mountd
stunnel
+swat
taiclockd
tmda-ofmipd
tomcat
@@ -148,6 +156,17 @@ logging console messages
-L -v -q exec sleep 3600
+

A chrony run script

+(LFS) +
+ #!/bin/sh
+ exec 2>&1
+ exec  /usr/sbin/chronyd -d -r -s
+
+This service needs a +log service +to be set up. +

A clamd run script

(RedHat 7)
@@ -177,7 +196,7 @@ See also 
 this page.
 

A cups run script

-(Debian woody, a.bono) +(Debian woody)
  #!/bin/sh
  exec 2>&1
@@ -230,6 +249,13 @@ The in.dhcpd service needs a
 log service
 to be set up.
 
+

An exim run script

+(Linux, FreeBSD) +
+ #!/bin/sh
+ exec /usr/local/sbin/exim -bdf -q30m
+
+

expireproctitle run script examples

(Linux) @@ -250,8 +276,19 @@ This service needs a log service to be set up.
+

A fcron run script

+(LFS) +
+ #!/bin/sh
+ exec 2>&1
+ exec /usr/sbin/fcron -f -y
+
+This service needs a +log service +to be set up. +

A gdm run script

-(Debian woody) +(Debian woody)
  #!/bin/sh
  exec gdm -nodaemon
@@ -273,6 +310,23 @@ records. Debian's mingetty does create his own utmp record.
  exec /sbin/agetty 38400 tty1 linux
 

+

A gpm run script

+(LFS) +
+ #!/bin/sh
+ exec 2>&1
+ . /etc/sysconfig/mouse
+ exec gpm -D -m $MDEVICE -t $PROTOCOL
+
+
+

A hotwayd run script

+(LFS) +
+ #!/bin/sh
+ exec 2>,&1
+ exec tcpsvd -l0 -u nobody 127.0.0.1 110 /usr/sbin/hotwayd
+
+

An oidentd run script

(Linux, oidentd version 2.0.6)
@@ -329,6 +383,14 @@ This service needs a
 log service
 to be set up.
 
+

A keepalived run script

+(Linux) +
+ #!/bin/sh
+ exec 2>&1
+ exec keepalived -n
+
+

A klogd run script

(Debian woody)
@@ -383,6 +445,12 @@ to be set up.
          --socket=/tmp/mysql.sock \
          --pid-file=/pack/mysql/data/mysql.pid 2>&1
 
+(LFS) +
+ #!/bin/sh
+ exec 2>&1
+ exec /usr/sbin/mysqld -u mysql
+
(Debian, ``It's an ugly hack, but it works'')
  #!/bin/sh
@@ -442,6 +510,14 @@ This service needs a
 log service
 to be set up.
 
+

A portmap run script

+(LFS) +
+ #!/bin/sh
+ exec 2>&1
+ exec /sbin/portmap -d
+
+

A postgresql run script

(SunOS)
@@ -479,7 +555,7 @@ This service needs a
 to be set up.
 

A pure-ftpd run script

-(Debian woody, a.bono) +(Debian woody)
  #!/bin/sh
  exec 2>&1
@@ -636,6 +712,13 @@ trap 'exit 2' 1 2 3 15
  exec /usr/local/sbin/stunnel -f -d 1234 -r 25 -v3 -a /etc/ssl/mailcerts 2>&1
 

+

A swat run script

+
+ #!/bin/sh
+ exec 2>&1
+ exec tcpsvd -l0 127.0.0.1 901 /usr/sbin/swat
+
+

A taiclockd run script

  #!/bin/sh
-- 
cgit 1.4.1