/usr/share/perl5/User/Identity/System.pm is in libuser-identity-perl 0.94-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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | # Copyrights 2003-2014 by [Mark Overmeer <perl@overmeer.net>].
# For other contributors see Changes.
# See the manual pages for details on the licensing terms.
# Pod stripped from pm file by OODoc 2.01.
package User::Identity::System;
our $VERSION = '0.94';
use base 'User::Identity::Item';
use strict;
use warnings;
use User::Identity;
use Scalar::Util 'weaken';
sub type { "network" }
sub init($)
{ my ($self, $args) = @_;
$self->SUPER::init($args);
exists $args->{$_} && ($self->{'UIS_'.$_} = delete $args->{$_})
foreach qw/hostname location os password username/;
$self->{UIS_hostname} ||= 'localhost';
$self;
}
sub hostname() { shift->{UIS_hostname} }
sub username() { shift->{UIS_username} }
sub os() { shift->{UIS_os} }
sub password() { shift->{UIS_password} }
sub location()
{ my $self = shift;
my $location = $self->{MI_location} or return;
unless(ref $location)
{ my $user = $self->user or return;
$location = $user->find(location => $location);
}
$location;
}
1;
|