<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#!/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 =&gt; Debconf::Client::ConfModule;
	goto &amp;{Debconf::Client::ConfModule-&gt;can('import')};
}

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

1
</pre></body></html>