Mark the nic spray fixed once the nic has been re-added. They should still add a test to make sure the IP has been put back, etc. Also fixed an issue with duplicate nic names.

This commit is contained in:
2018-03-24 09:34:06 -05:00
parent 10ef0a426f
commit d8a5a8169c
3 changed files with 41 additions and 6 deletions

View File

@ -2003,7 +2003,16 @@ namespace EduNetworkBuilder
}
}
}
public void RegisterNICAdded(string source, string nicname)
{
foreach (NetTest one in NetTests)
{
if (one.sHost == source && one.TheTest == NetTestType.DeviceNICSprays && one.dHost == nicname)
{
one.SetDone();
}
}
}
public void RegisterUPSAdded(string source)
{
foreach (NetTest one in NetTests)