mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-05 14:09:53 +03:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user