12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <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 > /etc/init.d/sysklogd << "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>
|