/**
  * An init task to write ClientVmInfo instances to the blackboard, for use later in choosing vms
  * to stop/start. This is only necessary if getOtherVMs(numToTarget, clientMatchStr) is used.
  */
 public static void StopStart_initTask() {
   int myVMid = RemoteTestModule.getMyVmid();
   ClientVmInfo myInfo =
       new ClientVmInfo(new Integer(myVMid), RemoteTestModule.getMyClientName(), null);
   StopStartBB.getBB().getSharedMap().put(VmInfoKey + myVMid, myInfo);
 }