24 lines
275 B
Bash
Executable File
24 lines
275 B
Bash
Executable File
#! /bin/sh
|
|
#Tag 0x00000f00
|
|
|
|
# Initial System Setup
|
|
# "$Revision: 1.7 $"
|
|
|
|
case "$1" in
|
|
'start')
|
|
|
|
# syslogd not started here in miniroot
|
|
|
|
;;
|
|
|
|
'stop')
|
|
# Stop the syslog-demon
|
|
killall 15 syslogd
|
|
exit 0
|
|
;;
|
|
|
|
*)
|
|
echo "usage: $0 {start|stop}"
|
|
;;
|
|
esac
|