Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
perl5 /
vendor_perl /
Module /
Build /
Delete
Unzip
Name
Size
Permission
Date
Action
Platform
[ DIR ]
drwxr-xr-x
2021-09-16 10:45
API.pod
66.87
KB
-rw-r--r--
2014-06-10 00:04
Authoring.pod
10.75
KB
-rw-r--r--
2014-06-10 00:04
Base.pm
162.47
KB
-rw-r--r--
2014-06-10 00:04
Bundling.pod
4.96
KB
-rw-r--r--
2014-06-10 00:04
Compat.pm
17.96
KB
-rw-r--r--
2014-06-10 00:04
Config.pm
1.08
KB
-rw-r--r--
2014-06-10 00:04
ConfigData.pm
6.96
KB
-rw-r--r--
2014-06-10 00:04
Cookbook.pm
16.93
KB
-rw-r--r--
2014-06-10 00:04
Dumper.pm
446
B
-rw-r--r--
2014-06-10 00:04
ModuleInfo.pm
625
B
-rw-r--r--
2014-06-10 00:04
Notes.pm
8.33
KB
-rw-r--r--
2014-06-10 00:04
PPMMaker.pm
4.54
KB
-rw-r--r--
2014-06-10 00:04
PodParser.pm
1.31
KB
-rw-r--r--
2014-06-10 00:04
Version.pm
361
B
-rw-r--r--
2014-06-10 00:04
YAML.pm
401
B
-rw-r--r--
2014-06-10 00:04
Save
Rename
package Module::Build::Config; use strict; use vars qw($VERSION); $VERSION = '0.4005'; $VERSION = eval $VERSION; use Config; sub new { my ($pack, %args) = @_; return bless { stack => {}, values => $args{values} || {}, }, $pack; } sub get { my ($self, $key) = @_; return $self->{values}{$key} if ref($self) && exists $self->{values}{$key}; return $Config{$key}; } sub set { my ($self, $key, $val) = @_; $self->{values}{$key} = $val; } sub push { my ($self, $key, $val) = @_; push @{$self->{stack}{$key}}, $self->{values}{$key} if exists $self->{values}{$key}; $self->{values}{$key} = $val; } sub pop { my ($self, $key) = @_; my $val = delete $self->{values}{$key}; if ( exists $self->{stack}{$key} ) { $self->{values}{$key} = pop @{$self->{stack}{$key}}; delete $self->{stack}{$key} unless @{$self->{stack}{$key}}; } return $val; } sub values_set { my $self = shift; return undef unless ref($self); return $self->{values}; } sub all_config { my $self = shift; my $v = ref($self) ? $self->{values} : {}; return {%Config, %$v}; } 1;