buildroot/package/dmraid/S20dmraid
Carlos Santos e72bb38b9d dmraid: don't test if the binary exists in the init script
The test doesn't make sense. It just exits without any error if the
binary doesn't exist, which is silly.

Signed-off-by: Carlos Santos <casantos@datacom.ind.br>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018-04-16 07:34:37 +02:00

30 lines
489 B
Bash

#!/bin/sh
set -e
# try to load module in case that hasn't been done yet
modprobe dm-mod >/dev/null 2>&1
case "$1" in
start|"")
echo "Setting up DMRAID devices..."
/usr/sbin/dmraid --activate yes --ignorelocking --verbose
;;
stop)
echo "Shutting down DMRAID devices... "
/usr/sbin/dmraid --activate no --ignorelocking --verbose
;;
restart|force-reload)
$0 stop
sleep 1
$0 start
;;
*)
echo "Usage: dmraid {start|stop|restart|force-reload}"
exit 1
;;
esac