Changeset 58696 in vbox for trunk/src/VBox/Installer
- Timestamp:
- Nov 16, 2015 10:41:05 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 104123
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/solaris/checkinstall.sh
r58687 r58696 97 97 } 98 98 99 # find_bin_path() 100 # !! failure is always fatal 101 find_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 121 find_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 99 134 # 100 135 # Begin execution … … 116 151 PKG_MISSING_IPS="" 117 152 PKG_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`153 BIN_PKGINFO=/usr/bin/pkginfo 154 BIN_PKG=/usr/bin/pkg 155 BIN_SVCS=/usr/bin/svcs 121 156 BIN_SVCADM=/usr/sbin/svcadm 122 157 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 159 find_mandatory_bins 132 160 133 161 infoprint "Checking package dependencies..."
Note:
See TracChangeset
for help on using the changeset viewer.