Skip to content

Commit

Permalink
Merge pull request #2376 from DimStar77/kernel-certs
Browse files Browse the repository at this point in the history
findfileconflicts: Ignore kernel installed certificates in /etc/uefi/…
  • Loading branch information
DimStar77 committed Dec 17, 2019
2 parents 9a8ba5b + b635702 commit e62caa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion findfileconflicts
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ for my $tc (sort keys %tocheck) {
}
# got one!
$f =~ /^(\d+)\/(.*)/;
push @con, "$dirs[$1]$2$info";
push @con, "$dirs[$1]$2$info" unless "$dirs[$1]$2" =~ m{/etc/uefi/certs/.*crt};
}
next unless @con;
my @sp1 = split(' ', $p1);
Expand Down

0 comments on commit e62caa7

Please sign in to comment.