Thanks go to the following people for contributing run scripts: Alessandro Bono (a.bono).
#!/bin/sh exec mingetty tty5The runit package does not care about utmp records for getties. You should choose a getty that handles its own utmp and wtmp records. Debian's mingetty does create his own utmp record.
#!/bin/sh exec 2>&1 exec sshd -D -eThis service needs a log service to be set up.
The sshd program is version OpenSSH_2.9p2.
#!/bin/sh exec /sbin/klogd -n
#!/bin/sh echo -n . exec sleep 300
#!/bin/sh exec 2>&1 exec dhcpd-2.2.x -f -d -cf ./config eth0This service needs a log service to be set up.
#!/bin/sh exec dhclient -e -d -cf ./config -lf ./leases -pf ./pid eth1
#!/bin/sh exec gdm -nodaemon
#!/bin/sh exec 2>&1 NEED_LOCKD=yes if test -f /proc/ksyms; then # We need to be conservative and run lockd, # unless we can prove that it isn't required. grep -q lockdctl /proc/ksyms || NEED_LOCKD=no fi if [ "$NEED_LOCKD" = yes ]; then /sbin/rpc.lockd fi exec rpc.statd -F -dThis service needs a log service to be set up.
#!/bin/sh svwaitup /service/statd RPCNFSDCOUNT=8 # Number of servers to be started up by default RPCMOUNTDOPTS=-F exportfs -r rpc.nfsd -- $RPCNFSDCOUNT rpcinfo -u localhost nfs 3 >/dev/null 2>&1 || RPCMOUNTDOPTS="$RPCMOUNTDOPTS --no-nfs-version 3" exec rpc.mountd $RPCMOUNTDOPTS
#!/bin/sh exec squid -f ./config -sN
#!/bin/sh exec 2>&1 exec /usr/sbin/cupsd -f
#!/bin/sh exec 2>&1 exec /usr/sbin/pure-ftpd -a 50 -E -l pam -u 100