VirtualBox

Changeset 47544 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Aug 5, 2013 1:45:55 PM (11 years ago)
Author:
vboxsync
Message:

VBoxManage: when taking snapshots, --pause is default and --live must be explicitely specified

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

Legend:

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

    r47246 r47544  
    499499        RTStrmPrintf(pStrm,
    500500                           "%s snapshot %s        <uuid|vmname>\n"
    501                      "                            take <name> [--description <desc>] [--pause] |\n"
     501                     "                            take <name> [--description <desc>] [--live] |\n"
    502502                     "                            delete <uuid|snapname> |\n"
    503503                     "                            restore <uuid|snapname> |\n"
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageSnapshot.cpp

    r44528 r47544  
    307307            /* parse the optional arguments */
    308308            Bstr desc;
    309             bool fPause = false;
     309            bool fPause = true; /* default is NO live snapshot */
    310310            static const RTGETOPTDEF s_aTakeOptions[] =
    311311            {
     
    313313                { "-description",  'd', RTGETOPT_REQ_STRING },
    314314                { "-desc",         'd', RTGETOPT_REQ_STRING },
    315                 { "--pause",       'p', RTGETOPT_REQ_NOTHING }
     315                { "--pause",       'p', RTGETOPT_REQ_NOTHING },
     316                { "--live",        'l', RTGETOPT_REQ_NOTHING }
    316317            };
    317318            RTGETOPTSTATE GetOptState;
     
    329330                        break;
    330331
     332                    case 'l':
     333                        fPause = false;
     334                        break;
     335
    331336                    case 'd':
    332337                        desc = Value.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