SL6.5 support
This commit is contained in:
parent
014c69c7b9
commit
8552292c70
@ -92,8 +92,9 @@ require Exporter;
|
||||
"1194512327.501046" => "rhas4.6",
|
||||
"1241464993.830723" => "rhas4.8", #x86-64
|
||||
|
||||
"1273608367.051780" => "SL5.5", #x86_64 DVD ISO
|
||||
"1299104542.844706" => "SL6", #x86_64 DVD ISO
|
||||
"1273608367.051780" => "SL5.5", #x86_64 DVD ISO
|
||||
"1299104542.844706" => "SL6", #x86_64 DVD ISO
|
||||
"1390839789.062069" => "SL6.5", #x86_64 DVD ISO Install
|
||||
);
|
||||
my %numdiscs = (
|
||||
"1156364963.862322" => 4,
|
||||
|
@ -176,7 +176,8 @@ if ((!$imagename) && (!$os)){
|
||||
my @dircontents = `ls $installdir`;
|
||||
chomp(@dircontents);
|
||||
foreach (@dircontents) {
|
||||
if($_ =~ /(rhel|fedora|sl|centos|suse)/){
|
||||
# SL matches Scientific Linux, sl matches sles amd sled
|
||||
if($_ =~ /(rhel|fedora|SL|centos|sl|suse)/){
|
||||
push @oses,$_;
|
||||
}
|
||||
}
|
||||
|
@ -2196,6 +2196,13 @@ sub copycd
|
||||
$distname = "rhels5";
|
||||
}
|
||||
}
|
||||
elsif ($desc =~ /^Scientific Linux (\d)\.(\d)/)
|
||||
{
|
||||
unless ($distname)
|
||||
{
|
||||
$distname = "SL$1.$2";
|
||||
}
|
||||
}
|
||||
elsif ($desc =~ /^LTS$/)
|
||||
{
|
||||
unless ($distname)
|
||||
|
Loading…
Reference in New Issue
Block a user