mirror of https://github.com/apache/cloudstack.git
including a new Simulator hypervisor type
This commit is contained in:
parent
1b251a5fc8
commit
a72427444b
|
|
@ -54,9 +54,11 @@ public class Hypervisor {
|
|||
return HypervisorType.Parralels;
|
||||
}else if (hypervisor.equalsIgnoreCase("BareMetal")) {
|
||||
return HypervisorType.BareMetal;
|
||||
} else if (hypervisor.equalsIgnoreCase("Simulator")) {
|
||||
return HypervisorType.Simulator;
|
||||
} else if (hypervisor.equalsIgnoreCase("Any")) {
|
||||
return HypervisorType.Any;
|
||||
} else {
|
||||
} else {
|
||||
return HypervisorType.None;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue