Skip to content

Commit

Permalink
fpmip: Check for new kernels list
Browse files Browse the repository at this point in the history
  • Loading branch information
cdown committed Jan 17, 2024
1 parent 7a4cf02 commit e2d736c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/find-possibly-manually-installed-packages
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ for pkg in "${pkgs[@]}"; do
pkg_check=${pkg%-docs}
pkg_check=${pkg_check%-headers}

if ! grep -Rq -e "[:-] $pkg_check"'\( \|$\)' -e "=$pkg_check"'\( \|$\)' "$playbook_dir/"{tasks,vars,setup.yml} && ! (( base["$pkg"] )); then
if ! grep -Rq -e "\(\[\|, \)$pkg_check\(,\|\]\)" -e "[:-] $pkg_check"'\( \|$\)' -e "=$pkg_check"'\( \|$\)' "$playbook_dir/"{tasks,vars,setup.yml} && ! (( base["$pkg"] )); then
manual+=( "$pkg" )
fi
done
Expand Down

0 comments on commit e2d736c

Please sign in to comment.