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

View File

@ -14,11 +14,11 @@ DMRAID_INSTALL_STAGING:=yes
define DMRAID_INSTALL_TARGET_CMDS define DMRAID_INSTALL_TARGET_CMDS
$(INSTALL) -m 0755 $(@D)/$(DMRAID_SUBDIR)/tools/dmraid $(TARGET_DIR)/usr/sbin $(INSTALL) -m 0755 $(@D)/$(DMRAID_SUBDIR)/tools/dmraid $(TARGET_DIR)/usr/sbin
$(INSTALL) -m 0755 package/dmraid/dmraid.init $(TARGET_DIR)/etc/init.d/dmraid $(INSTALL) -m 0755 package/dmraid/dmraid.init $(TARGET_DIR)/etc/init.d/S20dmraid
endef endef
define DMRAID_UNINSTALL_TARGET_CMDS define DMRAID_UNINSTALL_TARGET_CMDS
rm -f $(TARGET_DIR)/usr/sbin/dmraid $(TARGET_DIR)/etc/init.d/dmraid rm -f $(TARGET_DIR)/usr/sbin/dmraid $(TARGET_DIR)/etc/init.d/S20dmraid
endef endef
$(eval $(call AUTOTARGETS,package,dmraid)) $(eval $(call AUTOTARGETS,package,dmraid))