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

28 lines
363 B
Bash
Executable File

#! /sbin/sh
#Tag 0x00000f00
# RAID control
# "$Revision: 1.8 $"
case $1 in
'start')
if /sbin/chkconfig verbose
then
echo "Checking for down RAID disks:"
fi
/usr/sbin/raid -L -cmf
;;
'stop')
if /sbin/chkconfig verbose
then
echo "Checking for down RAID disks:"
fi
/usr/sbin/raid -L -cmf
;;
*)
echo "usage: /etc/init.d/raid {start|stop}"
;;
esac