*** ./ntpd/run *** #!/bin/sh exec 2>&1 echo "*** Starting ntpd ***" exec \ /usr/sbin/ntpd -g -n *** ./xfs/run *** #!/bin/sh exec 2>&1 echo "Starting X font server ..." exec \ /usr/bin/xfs \ -nodaemon \ -droppriv \ -user nobody *** ./fetchmail/log/run *** #!/bin/sh exec \ setuidgid nobody \ multilog t s1000000 /var/multilog/fetchmail *** ./fetchmail/run *** #!/bin/sh exec 2>&1 echo "*** Starting fetchmail service ...***" if [ "$(pidof exim)" = "" ] ; then echo "exim not running, exiting" exit 1 fi exec \ env FETCHMAILHOME="./pid" \ setuidgid fetchmail \ fetchmail -v -f ./fetchmail.conf --nodetach *** ./exim/run *** #!/bin/sh exec 2>&1 echo "*** Starting exim ***" exec \ /opt/exim/bin/exim -bdf -q25m *** ./vboxweb/log/run *** #!/bin/sh exec \ setuidgid nobody \ multilog t s1000000 /var/multilog/vboxweb *** ./vboxweb/run *** #!/bin/sh exec 2>&1 echo "*** Starting vboxweb service ...***" exec \ /opt/VirtualBox/vboxwebsrv # -v *** ./save-attachments/log/run *** #!/bin/sh exec \ setuidgid nobody \ multilog t s1000000 /var/multilog/save-attachments *** ./save-attachments/run *** #!/bin/sh exec 2>&1 echo "*** Starting save-attachments ***" exec \ setuidgid gs \ /home/gs/save-attachments/server *** ./printerpower/log/run *** #!/bin/sh exec \ setuidgid nobody \ multilog t s1000000 /var/multilog/printerpower *** ./printerpower/run *** #!/bin/sh exec /usr/lib64/cups/backend/powersocket --daemon *** ./vnc-fwd/run *** #!/bin/sh exec \ setuidgid nobody \ bin/vnc-fwd *** ./cups/run *** #!/bin/sh exec 2>&1 echo "*** Starting cups ***" # Set the timezone, if possible. This allows the scheduler and all child # processes to know the local timezone when reporting dates and times to the # user. If no timezone information is found, then Greenwich Mean Time (GMT) # will probably be used. [ "$TZ" ] && export TZ # Don't use TMPDIR environment variable from init script, as that can cause # cupsd to set TempDir to a user's temporary directory instead of the # default. unset TMPDIR exec \ /usr/sbin/cupsd -f *** ./mdadm-monitor/run *** #!/bin/sh exec 2>&1 echo "*** Starting mdadm-monitor ***" exec \ mdadm --monitor \ --syslog \ --mail=root@localhost \ --delay=300 \ --test \ /dev/md0 /dev/md1 /dev/md2 *** ./smartd/run *** #!/bin/sh echo '*** starting smartd ***' exec 2>&1 # exec \ /usr/sbin/smartd -n echo "*** smartd crashed !!! ***" exec /command/svc -d . *** ./pg9/log/run *** #!/bin/sh exec \ setuidgid nobody \ multilog t s1000000 /var/multilog/pg9 *** ./pg9/run *** #!/bin/sh PGDATA=/data/pgdata exec 2>&1 echo "Starting postgresql with PGDATA=$PGDATA" exec \ setuidgid postgres \ /opt/pg9/bin/postmaster -D "$PGDATA"