1
0

Source code upload

This commit is contained in:
calmsacibis995
2022-09-29 17:59:04 +03:00
parent 72fa9da3d7
commit 8fc8fa8089
33399 changed files with 11964078 additions and 0 deletions

27
eoe/cmd/initpkg/init.d/raid Executable file
View File

@@ -0,0 +1,27 @@
#! /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