/usr/share/perl5/Perlbal/CommandContext.pm is in libperlbal-perl 1.80-2.
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 | # keep track of the surrounding context for a ManageCommand, so commands
# can be less verbose when in config files
#
# Copyright 2005-2007, Six Apart, Ltd.
#
package Perlbal::CommandContext;
use strict;
use warnings;
no warnings qw(deprecated);
use fields (
'last_created', # the name of the last pool or service created
'verbose', # scalar bool: verbosity ("OK" on success)
);
sub new {
my $class = shift;
my $self = fields::new($class);
return $self;
}
sub verbose {
my $self = shift;
$self->{verbose} = shift if @_;
$self->{verbose};
}
1;
# Local Variables:
# mode: perl
# c-basic-indent: 4
# indent-tabs-mode: nil
# End:
|