VirtualBox

Changeset 49103 in vbox for trunk/src/VBox/Frontends


Ignore:
Timestamp:
Oct 15, 2013 6:20:39 AM (11 years ago)
Author:
vboxsync
Message:

pr6927. ISO images are skipped by default during export. The command "VBoxManage export" has a new argument "--iso" to explicitly export ISO images.

Location:
trunk/src/VBox/Frontends/VBoxManage
Files:
2 edited

Legend:

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

    r49038 r49103  
    796796        { "--ovf20",              '2', RTGETOPT_REQ_NOTHING },
    797797        { "--manifest",           'm', RTGETOPT_REQ_NOTHING },
     798        { "--iso",                'I', RTGETOPT_REQ_NOTHING },
    798799        { "--vsys",               's', RTGETOPT_REQ_UINT32 },
    799800        { "--product",            'p', RTGETOPT_REQ_STRING },
     
    814815    Utf8Str strOvfFormat("ovf-1.0"); // the default export version
    815816    bool fManifest = false; // the default
     817    bool fExportISOImages = false; // the default
    816818    std::list< ComPtr<IMachine> > llMachines;
    817819
     
    851853                case '2':   // --ovf20
    852854                     strOvfFormat = "ovf-2.0";
     855                     break;
     856
     857                case 'I':   // --iso
     858                     fExportISOImages = true;
    853859                     break;
    854860
     
    10551061            options.push_back(ExportOptions_CreateManifest);
    10561062
     1063        if (fExportISOImages)
     1064            options.push_back(ExportOptions_ExportDVDImages);
     1065
    10571066        ComPtr<IProgress> progress;
    10581067        CHECK_ERROR_BREAK(pAppliance, Write(Bstr(strOvfFormat).raw(),
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp

    r49086 r49103  
    410410                     "                            [--legacy09|--ovf09|--ovf10|--ovf20]\n"
    411411                     "                            [--manifest]\n"
     412                     "                            [--iso]\n"
    412413                     "                            [--vsys <number of virtual system>]\n"
    413414                     "                                    [--product <product name>]\n"
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