2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-06-24 15:05:36 +00:00

fix 2231 Failed to generate osimage definiton for sles11.4-x86_64-statelite-compute after copycds

This commit is contained in:
bybai
2016-11-30 06:38:29 -05:00
parent a558fd18a5
commit 6dbd5c88d5

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]});
}
}
}