blob: 6dc68bb662042cd8f0408a4a62cd33e857283499 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
type need_shutdown > /dev/null 2>&1 || . /lib/dracut-lib.sh
for i in $(multipath -l -v1); do
if dmsetup table "$i" | sed -n '/.*queue_if_no_path.*/q1'; then
need_shutdown
break
fi
done
|