dmraid: fix init script

Init scripts are only run if they are prefixed with S??, and dmraid gets
installed into /usr/sbin, not /sbin.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Peter Korsgaard
2010-09-16 15:14:35 +02:00
parent e7895986de
commit 78e7c0b642
2 changed files with 5 additions and 5 deletions

View File

@@ -2,7 +2,7 @@
set -e
[ -x /sbin/dmraid ] || exit 0
[ -x /usr/sbin/dmraid ] || exit 0
# try to load module in case that hasn't been done yet
modprobe dm-mod >/dev/null 2>&1
@@ -10,12 +10,12 @@ modprobe dm-mod >/dev/null 2>&1
case "$1" in
start|"")
echo "Setting up DMRAID devices..."
/sbin/dmraid --activate yes --ignorelocking --verbose
/usr/sbin/dmraid --activate yes --ignorelocking --verbose
;;
stop)
echo "Shutting down DMRAID devices... "
/sbin/dmraid --activate no --ignorelocking --verbose
/usr/sbin/dmraid --activate no --ignorelocking --verbose
;;
restart|force-reload)