VirtualBox

Changeset 80948 in vbox for trunk


Ignore:
Timestamp:
Sep 23, 2019 11:56:31 AM (5 years ago)
Author:
vboxsync
Message:

bugref:9555. Added parameter \'--launch\' for the command \'VBoxManage cloud instance start\'.

File:
1 edited

Legend:

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

    r80939 r80948  
    478478        { "--subnet",         't', RTGETOPT_REQ_STRING },
    479479        { "--privateip",      'P', RTGETOPT_REQ_STRING },
     480        { "--launch",         'l', RTGETOPT_REQ_STRING },
    480481    };
    481482    RTGETOPTSTATE GetState;
     
    495496
    496497    Utf8Str strDisplayName, strImageId;
    497 
    498498    int c;
    499499    while ((c = RTGetOpt(&GetState, &ValueUnion)) != 0)
     
    528528                                     Bstr(ValueUnion.psz).raw());
    529529                break;
    530 
    531530            case 'b':
    532531                pVSD->AddDescription(VirtualSystemDescriptionType_CloudBootDiskSize,
     
    549548                                     Bstr(ValueUnion.psz).raw());
    550549                break;
     550            case 'l':
     551                {
     552                    Utf8Str strLaunch(ValueUnion.psz);
     553                    if (strLaunch.isNotEmpty() && (strLaunch.equalsIgnoreCase("true") || strLaunch.equalsIgnoreCase("false")))
     554                        pVSD->AddDescription(VirtualSystemDescriptionType_CloudLaunchInstance,
     555                                             Bstr(ValueUnion.psz).raw(),
     556                                             Bstr(ValueUnion.psz).raw());
     557                    break;
     558                }
    551559            case VINF_GETOPT_NOT_OPTION:
    552560                return errorUnknownSubcommand(ValueUnion.psz);
Note: See TracChangeset for help on using the changeset viewer.

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