don't copy zonefile from the ns server if already in tmpdir

master
karchnu 2016-01-19 05:47:10 +01:00
parent d0973dc0e3
commit c563daacc7
1 changed files with 15 additions and 1 deletions

View File

@ -96,7 +96,21 @@ sub get_zonefile {
my $file = $self->get_remote_zf_();
my $dest = $self->get_ztmp_file_();
copycat ($file, $dest);
my $path = $dest;
# dest is the filename
if($dest =~ "://") {
my $fileuri = URI->new($dest);
$path = $fileuri->path;
}
if( -f $path ) {
say "FILE $path already exists : do not copy from ns server";
}
else {
copycat ($file, $dest);
}
zonefile->new(domain => $$self{domain}, zonefile => $dest);
}