VirtualBox

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


Ignore:
Timestamp:
Nov 16, 2015 10:41:05 AM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
104123
Message:

Solaris/Installer: avoid calling 'which' on checkinstall if possible.

File:
1 edited

Legend:

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

    r58687 r58696  
    9797}
    9898
     99# find_bin_path()
     100# !! failure is always fatal
     101find_bin_path()
     102{
     103    if test -z "$1"; then
     104        errorprint "missing argument to find_bin_path()"
     105        exit 1
     106    fi
     107
     108    binfilename=`basename $1`
     109    binfilepath=`which $binfilename 2> /dev/null`
     110    if test -x "$binfilepath"; then
     111        echo "$binfilepath"
     112        return 0
     113    else
     114        errorprint "$1 missing or is not an executable"
     115        exit 1
     116    fi
     117}
     118
     119# find_bins()
     120# !! failure is always fatal
     121find_mandatory_bins()
     122{
     123    # Search only for binaries that might be in different locations
     124    if test ! -x "$BIN_SVCS"; then
     125        BIN_SVCS=`find_bin_path "$BIN_SVCS"`
     126    fi
     127
     128    if test ! -x "$BIN_SVCADM"; then
     129        BIN_SVCADM=`find_bin_path "$BIN_SVCADM"`
     130    fi
     131}
     132
     133
    99134#
    100135# Begin execution
     
    116151PKG_MISSING_IPS=""
    117152PKG_MISSING_SVR4=""
    118 BIN_PKGINFO=`which pkginfo 2> /dev/null`
    119 BIN_PKG=`which pkg 2> /dev/null`
    120 BIN_SVCS=`which svcs 2> /dev/null`
     153BIN_PKGINFO=/usr/bin/pkginfo
     154BIN_PKG=/usr/bin/pkg
     155BIN_SVCS=/usr/bin/svcs
    121156BIN_SVCADM=/usr/sbin/svcadm
    122157
    123 # Check if our binaries are fine
    124 if test ! -x "$BIN_SVCS"; then
    125     errorprint "Missing or non-executable binary: svcs ($BIN_SVCS)."
    126     exit 1
    127 fi
    128 if test ! -x "$BIN_SVCADM"; then
    129     errorprint "Missing or non-executable binary: svcadm ($BIN_SVCADM)."
    130     exit 1
    131 fi
     158# Check non-optional binaries
     159find_mandatory_bins
    132160
    133161infoprint "Checking package dependencies..."
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