VirtualBox

Ignore:
Timestamp:
Oct 15, 2007 12:04:26 PM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
25293
Message:

API change to allow VM to be created with predefined UUID.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp

    r5280 r5292  
    302302                 "                            [-register]\n"
    303303                 "                            [-basefolder <path> | -settingsfile <path>]\n"
     304                 "                            [-uuid <uuid>]\n"
    304305                 "                            \n"
    305306                 "\n");
     
    34343435    Bstr settingsFile;
    34353436    Bstr name;
     3437    RTUUID id;
    34363438    bool fRegister = false;
    34373439
     
    34653467            name = argv[i];
    34663468        }
     3469        else if (strcmp(argv[i], "-uuid") == 0)
     3470        {
     3471            if (argc <= i + 1)
     3472            {
     3473                return errorArgument("Missing argument to '%s'", argv[i]);
     3474            }
     3475            i++;
     3476            if (VBOX_FAILURE(RTUuidFromStr(&id, argv[i])))
     3477            {
     3478                return errorArgument("Invalid UUID format %s\n", argv[i]);
     3479            }
     3480        }
    34673481        else if (strcmp(argv[i], "-register") == 0)
    34683482        {
     
    34893503        if (!settingsFile)
    34903504            CHECK_ERROR_BREAK(virtualBox,
    3491                 CreateMachine(baseFolder, name, machine.asOutParam()));
     3505                CreateMachine(baseFolder, name, Guid(id), machine.asOutParam()));
    34923506        else
    34933507            CHECK_ERROR_BREAK(virtualBox,
    3494                 CreateLegacyMachine(settingsFile, name, machine.asOutParam()));
     3508                CreateLegacyMachine(settingsFile, name, Guid(id), machine.asOutParam()));
    34953509
    34963510        CHECK_ERROR_BREAK(machine, SaveSettings());
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette