Merge pull request #311 from dracut-mailing-devs/1512379451-17727-1-git-send-email-piliu@redhat.com
dracut.sh: for_each_host_xx() function should indicate the empty casemaster
commit
2bdce3d461
|
|
@ -468,7 +468,8 @@ for_each_host_dev_fs()
|
||||||
local _dev
|
local _dev
|
||||||
local _ret=1
|
local _ret=1
|
||||||
|
|
||||||
[[ "${#host_fs_types[@]}" ]] || return 0
|
[[ "${#host_fs_types[@]}" ]] || return 2
|
||||||
|
|
||||||
|
|
||||||
for _dev in "${!host_fs_types[@]}"; do
|
for _dev in "${!host_fs_types[@]}"; do
|
||||||
$_func "$_dev" "${host_fs_types[$_dev]}" && _ret=0
|
$_func "$_dev" "${host_fs_types[$_dev]}" && _ret=0
|
||||||
|
|
@ -527,7 +528,7 @@ for_each_host_dev_and_slaves_all()
|
||||||
local _dev
|
local _dev
|
||||||
local _ret=1
|
local _ret=1
|
||||||
|
|
||||||
[[ "${host_devs[@]}" ]] || return 0
|
[[ "${host_devs[@]}" ]] || return 2
|
||||||
|
|
||||||
for _dev in "${host_devs[@]}"; do
|
for _dev in "${host_devs[@]}"; do
|
||||||
[[ -b "$_dev" ]] || continue
|
[[ -b "$_dev" ]] || continue
|
||||||
|
|
@ -543,7 +544,7 @@ for_each_host_dev_and_slaves()
|
||||||
local _func="$1"
|
local _func="$1"
|
||||||
local _dev
|
local _dev
|
||||||
|
|
||||||
[[ "${host_devs[@]}" ]] || return 0
|
[[ "${host_devs[@]}" ]] || return 2
|
||||||
|
|
||||||
for _dev in "${host_devs[@]}"; do
|
for _dev in "${host_devs[@]}"; do
|
||||||
[[ -b "$_dev" ]] || continue
|
[[ -b "$_dev" ]] || continue
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue