mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-20 01:26:38 +02:00
24 lines
399 B
Bash
24 lines
399 B
Bash
#!/sbin/openrc-run
|
|
|
|
description="Initialize multipath"
|
|
|
|
depend() {
|
|
before checkfs fsck multipathd iscsid lvm
|
|
after modules device-mapper
|
|
}
|
|
|
|
start() {
|
|
ebegin "Loading multipath modules"
|
|
modprobe -aq dm_mod dm-multipath
|
|
eend $?
|
|
|
|
ebegin "Activating multipath devices"
|
|
multipath -v0 >/dev/null
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Deactivating multipath devices"
|
|
multipath -v0 -F >/dev/null
|
|
eend $?
|
|
}
|