Do not import lpar node if FSP network associated with it

This commit is contained in:
Sheng Feng Xing 2013-09-30 11:47:22 +08:00
parent 62bf6ca650
commit 8d621ddc55

View File

@ -832,9 +832,15 @@ sub check_profile_consistent{
}
if ($profile_dict{$mgt} ne $nictype and $nodetype ne 'lpar') {
# Networkprofile's nictype is not consistent with hadrwareprofile's mgt
# Networkprofile's nictype is not consistent with hadrwareprofile's mgt, and the node type is not lpar
return 0, "Networkprofile's nictype is not consistent with hardwareprofile's mgt.";
}
if ($nodetype eq 'lpar' and $nictype eq 'FSP')
{
# can not associate FSP network if the node type is lpar
return 0, "The node with hardware type $nodetype can not use with $nictype networkprofile.";
}
return 1, "";
}