VirtualBox

Changeset 22119 in vbox for trunk/src/VBox/Installer


Ignore:
Timestamp:
Aug 10, 2009 9:01:10 AM (15 years ago)
Author:
vboxsync
Message:

Solaris/Installer: vboxconfig.sh bits.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Installer/solaris/vboxconfig.sh

    r22082 r22119  
    6868}
    6969
     70subprint()
     71{
     72    if test "$ISSILENT" != "$SILENTOP"; then
     73        echo 1>&2 "   - $1"
     74    fi
     75}
     76
    7077warnprint()
    7178{
     
    209216
    210217# module_added(modname)
    211 # returns 0 if added, 1 otherwise
     218# returns 1 if added, 0 otherwise
    212219module_added()
    213220{
     
    269276
    270277    if test $? -ne 0; then
    271         errorprint "   - Adding: $moddesc module ...FAILED!"
     278        subprint "Adding: $moddesc module ...FAILED!"
    272279        if test "$fatal" = "$FATALOP"; then
    273280            exit 1
     
    294301        $BIN_REMDRV $modname
    295302        if test $? -eq 0; then
    296             success "   - Removed: $moddesc module"
     303            subprint "Removed: $moddesc module"
    297304            return 0
    298305        else
    299             errorprint "   - Removing: $moddesc  ...FAILED!"
     306            subprint "Removing: $moddesc  ...FAILED!"
    300307            if test "$fatal" = "$FATALOP"; then
    301308                exit 1
     
    322329        $BIN_MODUNLOAD -i $modid
    323330        if test $? -eq 0; then
    324             success "   - Unloaded:  $moddesc module"
     331            subprint "Unloaded:  $moddesc module"
    325332        else
    326             errorprint "   - Unloading:  $moddesc  ...FAILED!"
     333            subprint "Unloading:  $moddesc  ...FAILED!"
    327334            if test "$fatal" = "$FATALOP"; then
    328335                exit 1
     
    349356    $BIN_MODLOAD -p $modname
    350357    if test $? -eq 0; then
    351         success "   - Loaded:  $moddesc module"
     358        subprint "Loaded:  $moddesc module"
    352359        return 0
    353360    else
    354         errorprint "   - Loading:  $modesc  ...FAILED!"
     361        subprint "Loading:  $modesc  ...FAILED!"
    355362        if test "$fatal" = "$FATALOP"; then
    356363            exit 1
     
    497504        $BIN_SVCCFG delete svc:/application/virtualbox/webservice:default
    498505        if test "$?" -eq 0; then
    499             success "   - Unloaded:  Web service"
     506            subprint "Unloaded:  Web service"
    500507        else
    501             warnprint "   - Unloading:  Web service  ...ERROR(S)."
     508            subprint "Unloading:  Web service  ...ERROR(S)."
    502509        fi
    503510    fi
     
    509516        $BIN_SVCCFG delete svc:/application/virtualbox/zoneaccess
    510517        if test "$?" -eq 0; then
    511             success "   - Unloaded:  Zone access service"
     518            subprint "Unloaded:  Zone access service"
    512519        else
    513             warnprint "   - Unloading:  Zone access service  ...ERROR(S)."
     520            subprint "Unloading:  Zone access service  ...ERROR(S)."
    514521        fi
    515522    fi
     
    566573            /usr/sbin/svcadm disable -s svc:/application/virtualbox/webservice:default
    567574            if test "$?" -eq 0; then
    568                 success "   - Loaded:  Web service"
     575                subprint "Loaded:  Web service"
    569576            else
    570                 warnprint "   - Loading:  Web service  ...ERROR(S)."
     577                subprint "Loading:  Web service  ...ERROR(S)."
    571578            fi
    572579        fi
     
    577584            /usr/sbin/svcadm enable -s svc:/application/virtualbox/zoneaccess
    578585            if test "$?" -eq 0; then
    579                 success "   - Loaded:  Zone access service"
     586                subprint "Loaded:  Zone access service"
    580587            else
    581                 warnprint "   - Loading:  Zone access service  ...ERROR(S)."
     588                subprint "Loading:  Zone access service  ...ERROR(S)."
    582589            fi
    583590        fi
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