dnsmanagerv1/cli/zone_del.pl

28 lines
393 B
Perl
Raw Normal View History

#!/usr/bin/perl -w
use v5.14;
use autodie;
2016-01-21 20:52:59 +01:00
use utf8;
use open qw/:std :utf8/;
use Modern::Perl;
use lib './lib/';
use configuration ':all';
use encryption ':all';
use app;
if( @ARGV != 1 ) {
say "usage : ./$0 ndd ";
exit 1;
}
my $dom = $ARGV[0];
eval {
my $app = app->new(get_cfg());
$app->delete_domain( $dom );
};
if( $@ ) {
say q{Une erreur est survenue. } . $@;
}