2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-06-16 11:20:32 +00:00

Merge pull request #2236 from bybai/sles

fix 2231 Failed to generate osimage definiton for sles11.4-x86_64-sta…
This commit is contained in:
cxhong
2016-12-05 10:17:12 -05:00
committed by GitHub

View File

@ -2215,6 +2215,10 @@ sub copycd
if ($ret[0] != 0) {
$callback->({ data => "Error when updating the osimage tables for stateless: " . $ret[1] });
}
my @ret=xCAT::SvrUtils->update_tables_with_diskless_image($distname, $arch, undef, "statelite",$path,$osdistroname);
if ($ret[0] != 0) {
$callback->({data => "Error when updating the osimage tables for statelite: " . $ret[1]});
}
}
}