Skip to content
This repository has been archived by the owner on Jan 24, 2023. It is now read-only.

Commit

Permalink
Add some more default pkcs11 module dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
ioanrogers committed May 17, 2016
1 parent 0cdf67c commit 0586805
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion lib/Crypt/PKCS11/Easy.pm
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,12 @@ has module_dirs => (
is => 'ro',
lazy => 1,
isa => ArrayRef,
default => sub { ['/usr/lib64/pkcs11/'] },
default => sub {
[
'/usr/lib64/pkcs11/', '/usr/lib/pkcs11',
'/usr/lib/x86_64-linux-gnu/pkcs11/'
];
},
);

has _pkcs11 => (is => 'rwp');
Expand Down

0 comments on commit 0586805

Please sign in to comment.