VirtualBox

Ignore:
Timestamp:
Jul 26, 2017 3:52:41 PM (8 years ago)
Author:
vboxsync
Message:

Unatteded: Added hostname attribute. Updated debian and ubuntu templates to pick up new properties.

File:
1 edited

Legend:

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

    r68095 r68127  
    12921292    const char *pszTimeZone             = NULL;
    12931293    const char *pszProxy                = NULL;
     1294    const char *pszHostname             = NULL;
    12941295    Utf8Str     strAbsAuxiliaryBasePath;
    12951296    const char *pszAuxiliaryBasePath    = NULL;
     
    13121313        { "--iso",                              'i', RTGETOPT_REQ_STRING },
    13131314        { "--user",                             'u', RTGETOPT_REQ_STRING },
    1314         { "--password",                         'p', RTGETOPT_REQ_STRING },
     1315        { "--password",                         'p', RTGETOPT_REQ_STRING }, /** @todo password file ++ */
    13151316        { "--full-user-name",                   'U', RTGETOPT_REQ_STRING },
    13161317        { "--key",                              'k', RTGETOPT_REQ_STRING },
     
    13251326        { "--time-zone",                        'z', RTGETOPT_REQ_STRING },
    13261327        { "--proxy",                            'y', RTGETOPT_REQ_STRING },
     1328        { "--hostname",                         'H', RTGETOPT_REQ_STRING },
    13271329        { "--auxiliary-base-path",              'x', RTGETOPT_REQ_STRING },
    13281330        { "--image-index",                      'm', RTGETOPT_REQ_UINT32 },
     
    14151417            case 'y':   // --proxy
    14161418                pszProxy = ValueUnion.psz;
     1419                break;
     1420
     1421            case 'H':   // --hostname
     1422                pszHostname = ValueUnion.psz;
    14171423                break;
    14181424
     
    15431549            if (pszProxy)
    15441550                CHECK_ERROR_BREAK(ptrUnattended, COMSETTER(Proxy)(Bstr(pszProxy).raw()));
     1551            if (pszHostname)
     1552                CHECK_ERROR_BREAK(ptrUnattended, COMSETTER(Hostname)(Bstr(pszHostname).raw()));
    15451553            if (fSetImageIdx)
    15461554                CHECK_ERROR_BREAK(ptrUnattended, COMSETTER(ImageIndex)(idxImage));
     
    15941602            SHOW_STR_ATTR(TimeZone,                      "timeZone");
    15951603            SHOW_STR_ATTR(Proxy,                         "proxy");
     1604            SHOW_STR_ATTR(Hostname,                      "hostname");
    15961605            SHOW_STR_ATTR(AuxiliaryBasePath,             "auxiliaryBasePath");
    15971606            SHOW_ATTR(    ImageIndex,                    "imageIndex",               ULONG, "%u");
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