25 lines
426 B
Bash
Executable File
25 lines
426 B
Bash
Executable File
#! /sbin/sh
|
|
|
|
# machine dependent startup script for the IP30 (OCTANE) system.
|
|
# this script will be run once for each system boot.
|
|
#
|
|
# "$Revision: 1.1 $"
|
|
|
|
case "$1" in
|
|
'start')
|
|
# Transfer any logged information from the Flash PROM into SYSLOG.
|
|
# see flash(1m) and syslog(1m) for more information.
|
|
/usr/sbin/flash -L
|
|
exit 0
|
|
;;
|
|
|
|
'stop')
|
|
exit 0
|
|
;;
|
|
|
|
*)
|
|
echo "usage: $0 {start|stop}"
|
|
;;
|
|
|
|
esac
|