lfs/chapter07/sysklogd.xml
Gerard Beekmans 1a167e4f33 Old explanation tells you to create a new file containing, instead of
telling you to create the files by running the command


git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@804 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
2001-07-16 17:17:16 +00:00

68 lines
1.4 KiB
XML

<sect1 id="ch07-sysklogd">
<title>Creating the sysklogd script</title>
<para>
Create the <filename>/etc/init.d/sysklogd</filename> script by running
the following command:
</para>
<para>
<screen>
<userinput>cat &gt; sysklogd &lt;&lt; "EOF"</userinput>
#!/bin/sh
# Begin /etc/init.d/sysklogd
#
# Include the functions declared in the /etc/init.d/functions file
#
source /etc/init.d/functions
case "$1" in
start)
echo -n "Starting system log daemon..."
loadproc /usr/sbin/syslogd -m 0
echo -n "Starting kernel log daemon..."
loadproc /usr/sbin/klogd
;;
stop)
echo -n "Stopping kernel log daemon..."
killproc klogd
echo -n "Stopping system log daemon..."
killproc syslogd
;;
reload)
echo -n "Reloading system log daemon configuration file..."
reloadproc syslogd 1
;;
restart)
$0 stop
/usr/bin/sleep 1
$0 start
;;
status)
statusproc /usr/sbin/syslogd
statusproc /usr/sbin/klogd
;;
*)
echo "Usage: $0 {start|stop|reload|restart|status}"
exit 1
;;
esac
# End /etc/init.d/sysklogd
<userinput>EOF</userinput>
</screen>
</para>
</sect1>