/usr/share/perl5/Sys/Info/Driver.pm is in libsys-info-base-perl 0.7804-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | package Sys::Info::Driver;
use strict;
use warnings;
use vars qw( $VERSION );
$VERSION = '0.7804';
1;
__END__
=head1 NAME
Sys::Info::Driver - Driver base class
=head1 SEE ALSO
L<Sys::Info>,
L<Sys::Info::Driver::Unknown>,
L<Sys::Info::Driver::Windows>,
L<Sys::Info::Driver::Linux>,
L<Sys::Info::Driver::BSD>.
=head1 AUTHOR
Burak Gursoy <burak@cpan.org>.
=head1 COPYRIGHT
Copyright 2006 - 2015 Burak Gursoy. All rights reserved.
=head1 LICENSE
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.16.2 or,
at your option, any later version of Perl 5 you may have available.
=cut
|