File: //scripts.20110531.215904.25158/cpsources.pl
# cpanel10 - cpsources.pl Copyright(c) 1997-2006 cPanel, Inc.
# All rights Reserved.
# copyright@cpanel.net http://cpanel.net
# This code is subject to the cPanel license. Unauthorized copying is prohibited
#### REMOVING THIS FILE WILL BREAK THE INSTALLER ####
sub loadcpsources {
my %CPSRC;
$CPSRC{'LAYER'} = 'layer2.cpanel.net';
$CPSRC{'NEWS'} = 'web.cpanel.net';
$CPSRC{'RSYNC'} = 'rsync.cpanel.net';
$CPSRC{'HTTPUPDATE'} = 'httpupdate.cpanel.net';
if ( open my $cpsources_fh, '<', '/etc/cpsources.conf' ) {
while (<$cpsources_fh>) {
chomp;
my ($name,$value) = split( m/\s*=\s*/, $_ );
$CPSRC{$name} = $value;
}
close $cpsources_fh;
}
return %CPSRC;
}
1;