On Mon, 21 Aug 2000 21:05:28 +0200, Seth Mos <knuffie@xxxxxxxxx> wrote:
:>>Aug 21 11:56:05 www -- MARK --
:>
:>in /etc/rc.d/init.d/syslog the script should start with "syslogd -m 0"
:>which sets the mark timer to 0 (zero) and disables it.
:>
:>Don't use the quotes in the script!!
:>
:>Bye
Thanks.
A snippet from the Qube2 script looks like:
# Source function library.
. /etc/rc.d/init.d/functions
[ -f /usr/sbin/syslogd ] || exit 0
[ -f /usr/sbin/klogd ] || exit 0
# See how we were called.
case "$1" in
start)
echo -n "Starting system loggers: "
daemon syslogd
^<-- this would be changed to daemon syslogd -m 0 ?
daemon klogd
echo
touch /var/lock/subsys/syslog
;;
Do I do a SIGHUP to restart the logging processes?
Mike.