1
0
Files
irix-657m-src/eoe/cmd/initpkg/init.d/sysetup.mr
2022-09-29 17:59:04 +03:00

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