K2LL33D SHELL

 Apache/2.4.7 (Ubuntu)
 Linux sman1baleendah 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64
 uid=33(www-data) gid=33(www-data) groups=33(www-data)
 safemode : OFF
 MySQL: ON | Perl: ON | cURL: OFF | WGet: ON
  >  / usr / share / perl5 / Debian / DebConf / Client /
server ip : 104.21.89.46

your ip : 172.69.17.142

H O M E


Filename/usr/share/perl5/Debian/DebConf/Client/ConfModule.pm
Size610
Permissionrw-r--r--
Ownerroot : root
Create time27-Apr-2025 09:50
Last modified23-Feb-2014 22:30
Last accessed06-Jul-2025 09:02
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
#!/usr/bin/perl
# This is a stub module that just uses the new module, and is here for
# backwards-compatability with pograms that use the old name.
package Debian::DebConf::Client::ConfModule;
use Debconf::Client::ConfModule;
use Debconf::Log qw{debug};
print STDERR "Debian::DebConf::Client::ConfModule is deprecated, please use Debconf::Client::ConfModule instead.\n";

sub import {
splice @_, 0, 1 => Debconf::Client::ConfModule;
goto &{Debconf::Client::ConfModule->can('import')};
}

sub AUTOLOAD {
(my $sub = $AUTOLOAD) =~ s/.*:://;
*$sub = \&{"Debconf::Client::ConfModule::$sub"};
goto &$sub;
}

1