Merge branch '2.2' into 2.3

This commit is contained in:
Markus Mäkelä
2019-03-05 04:54:40 +02:00
25 changed files with 600 additions and 146 deletions

View File

@ -495,3 +495,13 @@ const char* Nodes::ip(int i) const
{
return use_ipv6 ? IP6[i] : IP[i];
}
int Nodes::start_vm(int node)
{
return(system(start_vm_command[node]));
}
int Nodes::stop_vm(int node)
{
return(system(stop_vm_command[node]));
}