Merge remote-tracking branch 'github/master'
commit
27c9d1f20f
|
@ -977,7 +977,7 @@ inst_rules_wildcard() {
|
||||||
_found=$_rule
|
_found=$_rule
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
if [ -n ${hostonly} ] ; then
|
if [[ -n ${hostonly} ]] ; then
|
||||||
for _rule in ${_target}/$1 ; do
|
for _rule in ${_target}/$1 ; do
|
||||||
if [[ -f $_rule ]]; then
|
if [[ -f $_rule ]]; then
|
||||||
inst_rule_programs "$_rule"
|
inst_rule_programs "$_rule"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
# called by dracut
|
# called by dracut
|
||||||
check() {
|
check() {
|
||||||
[[ "$mount_needs" ]] && return 1
|
[[ "$mount_needs" ]] && return 1
|
||||||
require_binaries plymouthd plymouth
|
require_binaries plymouthd plymouth plymouth-set-default-theme
|
||||||
}
|
}
|
||||||
|
|
||||||
# called by dracut
|
# called by dracut
|
||||||
|
|
|
@ -42,10 +42,10 @@ ask_for_password() {
|
||||||
|
|
||||||
while [ $# -gt 0 ]; do
|
while [ $# -gt 0 ]; do
|
||||||
case "$1" in
|
case "$1" in
|
||||||
--cmd) ply_cmd="$2"; tty_cmd="$2" shift;;
|
--cmd) ply_cmd="$2"; tty_cmd="$2"; shift;;
|
||||||
--ply-cmd) ply_cmd="$2"; shift;;
|
--ply-cmd) ply_cmd="$2"; shift;;
|
||||||
--tty-cmd) tty_cmd="$2"; shift;;
|
--tty-cmd) tty_cmd="$2"; shift;;
|
||||||
--prompt) ply_prompt="$2"; tty_prompt="$2" shift;;
|
--prompt) ply_prompt="$2"; tty_prompt="$2"; shift;;
|
||||||
--ply-prompt) ply_prompt="$2"; shift;;
|
--ply-prompt) ply_prompt="$2"; shift;;
|
||||||
--tty-prompt) tty_prompt="$2"; shift;;
|
--tty-prompt) tty_prompt="$2"; shift;;
|
||||||
--tries) ply_tries="$2"; tty_tries="$2"; shift;;
|
--tries) ply_tries="$2"; tty_tries="$2"; shift;;
|
||||||
|
|
Loading…
Reference in New Issue