|
Server : Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 System : Linux server.jackjohnson.com 2.6.32-279.5.2.el6.x86_64 #1 SMP Fri Aug 24 01:07:11 UTC 2012 x86_64 User : jackjohn ( 502) PHP Version : 5.3.17 Disable Function : NONE Directory : /proc/self/root/scripts/ |
Upload File : |
#!/usr/local/cpanel/3rdparty/bin/perl
# cpanel - killdns-dnsadmin Copyright(c) 2010 cPanel, Inc.
# All rights Reserved.
# copyright@cpanel.net http://cpanel.net
# This code is subject to the cPanel license. Unauthorized copying is prohibited
use strict;
use Cpanel::DnsUtils;
$SIG{'PIPE'} = 'IGNORE';
$SIG{'HUP'} = 'IGNORE';
$SIG{'ALRM'} = 'IGNORE';
if ( $ENV{'KILLDNS_ENTRY'} && $ENV{'KILLDNS_ENTRY'} eq '1' ) {
print "Loop prevented. Are your /usr/local/cpanel/scripts out of sync with your cPanel version in /usr/local/cpanel? Try running /usr/local/cpanel/scripts/upcp --sync\n";
exit 1;
}
$ENV{'KILLDNS_ENTRY'} = 1; #prevent looping
my $domain = @ARGV ? $ARGV[0] : '';
if ( $domain eq '' && -t STDIN ) {
print 'Enter the zone to delete? ';
chomp( $domain = <STDIN> );
}
if ( $domain eq '' ) {
print "Error: No zone specified\n";
exit;
}
$domain =~ s/\///g;
$0 = "killdns - $domain";
print Cpanel::DnsUtils::askdnsadmin( 'REMOVEZONE', 0, $domain );