|
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 - listsubdomains 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::Config::LoadUserOwners ();
use Cpanel::Config::userdata ();
my $user = $ARGV[0];
if ( !defined $user ) {
&usage;
}
my @users = ($user);
# Case 41981: For resellers, add their client users' accounts
my %OWNER;
Cpanel::Config::LoadUserOwners::loadtrueuserowners( \%OWNER, 1, 1 );
push @users, ( grep { $OWNER{$_} eq $users[0] && $_ ne $users[0] } keys(%OWNER) );
foreach $user (@users) {
print $user, ":\n";
my $subdomains_hr = Cpanel::Config::userdata::load_user_subdomains($user);
for my $subdomain ( keys %$subdomains_hr ) {
print "\t", $subdomain, "\n";
}
}
sub usage {
print <<EO_USAGE;
Usage: listsubdomains user
EO_USAGE
exit 0;
}