blob: 44a290e35fee842d7ff28e2b8c7520fe5edc9abe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
#!/bin/sh
########################################################################
# Begin $rc_base/init.d/sysklogd
#
# Description : Sysklogd loader
#
# Authors : Gerard Beekmans - gerard@linuxfromscratch.org
#
# Version : 00.00
#
# Notes : Move the log file to old when stopping
#
########################################################################
. /etc/sysconfig/rc
. ${rc_functions}
case "${1}" in
start)
boot_mesg "Starting system log daemon..."
loadproc syslogd -m 0
boot_mesg "Starting kernel log daemon..."
loadproc klogd
;;
stop)
boot_mesg "Stopping kernel log daemon..."
killproc klogd
mv /var/log/kern.log /var/log/kern.log.old
touch /var/log/kern.log
boot_mesg "Stopping system log daemon..."
killproc syslogd
mv /var/log/sys.log /var/log/sys.log.old
touch /var/log/sys.log
mv /var/log/wtmp /var/log/wtmp.old
touch /var/log/wtmp
;;
reload)
boot_mesg "Reloading system log daemon config file..."
reloadproc syslogd
;;
restart)
${0} stop
sleep 1
${0} start
;;
status)
statusproc syslogd
statusproc klogd
;;
*)
echo "Usage: ${0} {start|stop|reload|restart|status}"
exit 1
;;
esac
# End $rc_base/init.d/sysklogd
|