????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.107 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/perl5/Debconf/DbDriver/ |
Upload File : |
#!/usr/bin/perl -w
# This file was preprocessed, do not edit!
package Debconf::DbDriver::Copy;
use strict;
use Debconf::Log qw{:all};
use base 'Debconf::DbDriver';
sub copy {
my $this=shift;
my $item=shift;
my $src=shift;
my $dest=shift;
debug "db $this->{name}" => "copying $item from $src->{name} to $dest->{name}";
my @owners=$src->owners($item);
if (! @owners) {
@owners=("unknown");
}
foreach my $owner (@owners) {
my $template = Debconf::Template->get($src->getfield($item, 'template'));
my $type="";
$type = $template->type if $template;
$dest->addowner($item, $owner, $type);
}
foreach my $field ($src->fields($item)) {
$dest->setfield($item, $field, $src->getfield($item, $field));
}
foreach my $flag ($src->flags($item)) {
$dest->setflag($item, $flag, $src->getflag($item, $flag));
}
foreach my $var ($src->variables($item)) {
$dest->setvariable($item, $var, $src->getvariable($item, $var));
}
}
1