Changeset 74086 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Sep 5, 2018 4:21:43 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 124850
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/ApplianceImplExport.cpp
r73975 r74086 2386 2386 hrc = ociProfile->CreateCloudClient(cloudClient.asOutParam()); 2387 2387 2388 #ifndef VBOX_WITH_CLOUD_PROVIDERS_NO_COMMANDS 2389 2388 2390 //fills by values from m->m_OciExportData 2389 2391 //mostly all names(keys) come from official OCI API documentation (see LaunchInstance description) … … 2468 2470 cloudClient.setNull(); 2469 2471 } 2472 #else 2473 if (SUCCEEDED(hrc)) 2474 { 2475 LogRel(("Appliance::i_writeFSOCI(): calling OCICloudClient::exportVM\n")); 2476 2477 if (m->virtualSystemDescriptions.size() == 1) { 2478 cloudClient.exportVM(m->virtualSystemDescriptions.front(), pTask->pProgress); 2479 } else { 2480 //TODO: fail here 2481 } 2482 } 2483 #endif 2470 2484 2471 2485 LogFlowFuncLeave(); 2472 2486 return hrc; 2473 2487 } 2474 2475 2488 /** 2476 2489 * Writes the Oracle Public Cloud appliance.
Note:
See TracChangeset
for help on using the changeset viewer.