Skip to content

Commit

Permalink
feat(dracut-init.sh): do not print by default if an udev rule is skipped
Browse files Browse the repository at this point in the history
  • Loading branch information
Henrik66 authored and LaszloGombos committed Jun 7, 2023
1 parent c5e036b commit aa20bbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dracut-init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ inst_rules() {
inst_rule_initqueue "$_found"
inst_simple "$_found" "$_target/${_found##*/}"
done
[[ $_found ]] || dinfo "Skipping udev rule: $_rule"
[[ $_found ]] || ddebug "Skipping udev rule: $_rule"
done
}

Expand All @@ -567,7 +567,7 @@ inst_rules_wildcard() {
_found=$_rule
done
fi
[[ $_found ]] || dinfo "Skipping udev rule: $_rule"
[[ $_found ]] || ddebug "Skipping udev rule: $_rule"
}

# make sure that library links are correct and up to date
Expand Down

0 comments on commit aa20bbb

Please sign in to comment.