VirtualBox

Changeset 38223 in vbox


Ignore:
Timestamp:
Jul 28, 2011 2:38:54 PM (14 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
73196
Message:

VBoxService: Implemented "--only-<service>" to just start one specific sub service (nice for debugging purposes).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/common/VBoxService/VBoxService.cpp

    r38113 r38223  
    132132    RTPrintf("Usage:\n"
    133133             " %-12s [-f|--foreground] [-v|--verbose] [-i|--interval <seconds>]\n"
    134              "              [--disable-<service>] [--enable-<service>] [-h|-?|--help]\n", g_pszProgName);
     134             "              [--disable-<service>] [--enable-<service>]\n"
     135             "              [--only-<service>] [-h|-?|--help]\n", g_pszProgName);
    135136#ifdef RT_OS_WINDOWS
    136137    RTPrintf("              [-r|--register] [-u|--unregister]\n");
     
    158159        RTPrintf("    --enable-%-14s Enables the %s service. (default)\n", g_aServices[j].pDesc->pszName, g_aServices[j].pDesc->pszName);
    159160        RTPrintf("    --disable-%-13s Disables the %s service.\n", g_aServices[j].pDesc->pszName, g_aServices[j].pDesc->pszName);
     161        RTPrintf("    --only-%-16s Only enables the %s service.\n", g_aServices[j].pDesc->pszName, g_aServices[j].pDesc->pszName);
    160162        if (g_aServices[j].pDesc->pszOptions)
    161163            RTPrintf("%s", g_aServices[j].pDesc->pszOptions);
     
    699701                        if ((fFound = !RTStrICmp(psz + sizeof("disable-") - 1, g_aServices[j].pDesc->pszName)))
    700702                            g_aServices[j].fEnabled = false;
     703
     704                if (cch > sizeof("only-") && !memcmp(psz, "only-", sizeof("only-") - 1))
     705                    for (unsigned j = 0; j < RT_ELEMENTS(g_aServices); j++)
     706                        g_aServices[j].fEnabled = !RTStrICmp(psz + sizeof("only-") - 1, g_aServices[j].pDesc->pszName);
    701707
    702708                if (!fFound)
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