rename function kdump_to_udev_name
kdump_to_udev_name function name cause confusion to people, change it to kdump_get_persistent_dev which sounds better. Signed-off-by: Dave Young <dyoung@redhat.com> Reviewed-by: Xunlei Pang <xlpang@redhat.com>
This commit is contained in:
parent
3742e9d0c3
commit
e2de6e1e9a
@ -32,7 +32,7 @@ depends() {
|
|||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
kdump_to_udev_name() {
|
kdump_get_persistent_dev() {
|
||||||
local dev="${1//\"/}"
|
local dev="${1//\"/}"
|
||||||
|
|
||||||
case "$dev" in
|
case "$dev" in
|
||||||
@ -397,7 +397,7 @@ default_dump_target_install_conf()
|
|||||||
kdump_install_net "$_target"
|
kdump_install_net "$_target"
|
||||||
_fstype="nfs"
|
_fstype="nfs"
|
||||||
else
|
else
|
||||||
_target=$(kdump_to_udev_name $_target)
|
_target=$(kdump_get_persistent_dev $_target)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "$_fstype $_target" >> ${initdir}/tmp/$$-kdump.conf
|
echo "$_fstype $_target" >> ${initdir}/tmp/$$-kdump.conf
|
||||||
@ -447,11 +447,11 @@ kdump_install_conf() {
|
|||||||
_val=$(strip_comments $_val)
|
_val=$(strip_comments $_val)
|
||||||
case "$_opt" in
|
case "$_opt" in
|
||||||
raw)
|
raw)
|
||||||
_pdev=$(persistent_policy="by-id" kdump_to_udev_name $_val)
|
_pdev=$(persistent_policy="by-id" kdump_get_persistent_dev $_val)
|
||||||
sed -i -e "s#^$_opt[[:space:]]\+$_val#$_opt $_pdev#" ${initdir}/tmp/$$-kdump.conf
|
sed -i -e "s#^$_opt[[:space:]]\+$_val#$_opt $_pdev#" ${initdir}/tmp/$$-kdump.conf
|
||||||
;;
|
;;
|
||||||
ext[234]|xfs|btrfs|minix)
|
ext[234]|xfs|btrfs|minix)
|
||||||
_pdev=$(kdump_to_udev_name $_val)
|
_pdev=$(kdump_get_persistent_dev $_val)
|
||||||
sed -i -e "s#^$_opt[[:space:]]\+$_val#$_opt $_pdev#" ${initdir}/tmp/$$-kdump.conf
|
sed -i -e "s#^$_opt[[:space:]]\+$_val#$_opt $_pdev#" ${initdir}/tmp/$$-kdump.conf
|
||||||
if is_atomic; then
|
if is_atomic; then
|
||||||
adjust_bind_mount_path "$_val"
|
adjust_bind_mount_path "$_val"
|
||||||
|
Loading…
Reference in New Issue
Block a user