1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

F #4130: Remove useless attach info from context.sh (#4156)

This commit is contained in:
Christian González 2020-02-05 10:23:44 +01:00 committed by GitHub
parent 653b67095d
commit 71d0d28b4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -339,6 +339,20 @@ int VirtualMachine::generate_network_context(VectorAttribute* context,
continue;
}
if (hasPreviousHistory() &&
previous_history->action == VMActions::NIC_DETACH_ACTION &&
vatts[i]->vector_value("ATTACH") == "YES")
{
int nic_id;
vatts[i]->vector_value("NIC_ID", nic_id);
clear_nic_context(nic_id);
continue;
}
bool alias_detach = hasPreviousHistory() &&
previous_history->action == VMActions::ALIAS_DETACH_ACTION &&
vatts[i]->vector_value("ATTACH") == "YES";