dracut-functions.sh: fix inst*() functions for "-H" handling
because some inst*() functions check the existance of the source files and do not know about the "-H" option, some failed to install the hostonly files.master
parent
f4eb0d9804
commit
4ef45f13f4
|
@ -760,33 +760,46 @@ inst_dir() {
|
||||||
}
|
}
|
||||||
|
|
||||||
inst() {
|
inst() {
|
||||||
|
local _hostonly_install
|
||||||
|
if [[ "$1" == "-H" ]]; then
|
||||||
|
_hostonly_install="-H"
|
||||||
|
shift
|
||||||
|
fi
|
||||||
[[ -e ${initdir}/"${2:-$1}" ]] && return 0 # already there
|
[[ -e ${initdir}/"${2:-$1}" ]] && return 0 # already there
|
||||||
#dinfo "$DRACUT_INSTALL -l $@"
|
$DRACUT_INSTALL ${initdir:+-D "$initdir"} ${DRACUT_RESOLVE_DEPS:+-l} ${DRACUT_FIPS_MODE:+-f} ${_hostonly_install:+-H} "$@"
|
||||||
$DRACUT_INSTALL ${initdir:+-D "$initdir"} ${DRACUT_RESOLVE_DEPS:+-l} ${DRACUT_FIPS_MODE:+-f} "$@"
|
(($? != 0)) && derror $DRACUT_INSTALL ${initdir:+-D "$initdir"} ${DRACUT_RESOLVE_DEPS:+-l} ${DRACUT_FIPS_MODE:+-f} ${_hostonly_install:+-H} "$@" || :
|
||||||
(($? != 0)) && derror $DRACUT_INSTALL ${initdir:+-D "$initdir"} ${DRACUT_RESOLVE_DEPS:+-l} ${DRACUT_FIPS_MODE:+-f} "$@" || :
|
|
||||||
}
|
}
|
||||||
|
|
||||||
inst_simple() {
|
inst_simple() {
|
||||||
|
local _hostonly_install
|
||||||
|
if [[ "$1" == "-H" ]]; then
|
||||||
|
_hostonly_install="-H"
|
||||||
|
shift
|
||||||
|
fi
|
||||||
[[ -e ${initdir}/"${2:-$1}" ]] && return 0 # already there
|
[[ -e ${initdir}/"${2:-$1}" ]] && return 0 # already there
|
||||||
[[ -e $1 ]] || return 1 # no source
|
[[ -e $1 ]] || return 1 # no source
|
||||||
$DRACUT_INSTALL ${initdir:+-D "$initdir"} "$@"
|
$DRACUT_INSTALL ${initdir:+-D "$initdir"} ${_hostonly_install:+-H} "$@"
|
||||||
(($? != 0)) && derror $DRACUT_INSTALL ${initdir:+-D "$initdir"} "$@" || :
|
(($? != 0)) && derror $DRACUT_INSTALL ${initdir:+-D "$initdir"} ${_hostonly_install:+-H} "$@" || :
|
||||||
}
|
}
|
||||||
|
|
||||||
inst_symlink() {
|
inst_symlink() {
|
||||||
|
local _hostonly_install
|
||||||
|
if [[ "$1" == "-H" ]]; then
|
||||||
|
_hostonly_install="-H"
|
||||||
|
shift
|
||||||
|
fi
|
||||||
[[ -e ${initdir}/"${2:-$1}" ]] && return 0 # already there
|
[[ -e ${initdir}/"${2:-$1}" ]] && return 0 # already there
|
||||||
[[ -L $1 ]] || return 1
|
[[ -L $1 ]] || return 1
|
||||||
$DRACUT_INSTALL ${initdir:+-D "$initdir"} ${DRACUT_RESOLVE_DEPS:+-l} ${DRACUT_FIPS_MODE:+-f} "$@"
|
$DRACUT_INSTALL ${initdir:+-D "$initdir"} ${DRACUT_RESOLVE_DEPS:+-l} ${DRACUT_FIPS_MODE:+-f} ${_hostonly_install:+-H} "$@"
|
||||||
(($? != 0)) && derror $DRACUT_INSTALL ${initdir:+-D "$initdir"} ${DRACUT_RESOLVE_DEPS:+-l} ${DRACUT_FIPS_MODE:+-f} "$@" || :
|
(($? != 0)) && derror $DRACUT_INSTALL ${initdir:+-D "$initdir"} ${DRACUT_RESOLVE_DEPS:+-l} ${DRACUT_FIPS_MODE:+-f} ${_hostonly_install:+-H} "$@" || :
|
||||||
}
|
}
|
||||||
|
|
||||||
inst_multiple() {
|
inst_multiple() {
|
||||||
local ret
|
local _ret
|
||||||
#dinfo "initdir=$initdir $DRACUT_INSTALL -l $@"
|
|
||||||
$DRACUT_INSTALL ${initdir:+-D "$initdir"} -a ${DRACUT_RESOLVE_DEPS:+-l} ${DRACUT_FIPS_MODE:+-f} "$@"
|
$DRACUT_INSTALL ${initdir:+-D "$initdir"} -a ${DRACUT_RESOLVE_DEPS:+-l} ${DRACUT_FIPS_MODE:+-f} "$@"
|
||||||
ret=$?
|
_ret=$?
|
||||||
(($ret != 0)) && derror $DRACUT_INSTALL ${initdir:+-D "$initdir"} -a ${DRACUT_RESOLVE_DEPS:+-l} ${DRACUT_FIPS_MODE:+-f} "$@" || :
|
(($_ret != 0)) && derror $DRACUT_INSTALL ${initdir:+-D "$initdir"} -a ${DRACUT_RESOLVE_DEPS:+-l} ${DRACUT_FIPS_MODE:+-f} ${_hostonly_install:+-H} "$@" || :
|
||||||
return $ret
|
return $_ret
|
||||||
}
|
}
|
||||||
|
|
||||||
dracut_install() {
|
dracut_install() {
|
||||||
|
@ -794,10 +807,15 @@ dracut_install() {
|
||||||
}
|
}
|
||||||
|
|
||||||
inst_library() {
|
inst_library() {
|
||||||
|
local _hostonly_install
|
||||||
|
if [[ "$1" == "-H" ]]; then
|
||||||
|
_hostonly_install="-H"
|
||||||
|
shift
|
||||||
|
fi
|
||||||
[[ -e ${initdir}/"${2:-$1}" ]] && return 0 # already there
|
[[ -e ${initdir}/"${2:-$1}" ]] && return 0 # already there
|
||||||
[[ -e $1 ]] || return 1 # no source
|
[[ -e $1 ]] || return 1 # no source
|
||||||
$DRACUT_INSTALL ${initdir:+-D "$initdir"} ${DRACUT_RESOLVE_DEPS:+-l} ${DRACUT_FIPS_MODE:+-f} "$@"
|
$DRACUT_INSTALL ${initdir:+-D "$initdir"} ${DRACUT_RESOLVE_DEPS:+-l} ${DRACUT_FIPS_MODE:+-f} ${_hostonly_install:+-H} "$@"
|
||||||
(($? != 0)) && derror $DRACUT_INSTALL ${initdir:+-D "$initdir"} ${DRACUT_RESOLVE_DEPS:+-l} ${DRACUT_FIPS_MODE:+-f} "$@" || :
|
(($? != 0)) && derror $DRACUT_INSTALL ${initdir:+-D "$initdir"} ${DRACUT_RESOLVE_DEPS:+-l} ${DRACUT_FIPS_MODE:+-f} ${_hostonly_install:+-H} "$@" || :
|
||||||
}
|
}
|
||||||
|
|
||||||
inst_binary() {
|
inst_binary() {
|
||||||
|
|
Loading…
Reference in New Issue