- Timestamp:
- Dec 29, 2012 12:45:56 AM (12 years ago)
- Location:
- trunk/src/VBox/Installer/solaris
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/solaris/pkginstall.sh
-
Property svn:executable
set to
*
r44211 r44215 31 31 fi 32 32 33 # pkgadd -v 34 if test "$1" = "--sh-trace" || test "$2" = "--sh-trace" || test "$3" = "--sh-trace"; then 35 set -x 36 fi 37 DEBUGOPT=`set -o | sed -ne 's/^xtrace *on$/--sh-trace/p'` # propagate pkgadd -v 38 33 39 # If PKG_INSTALL_ROOT is undefined or NULL, redefine to '/' and carry on. 34 ${PKG_INSTALL_ROOT:=/}/opt/VirtualBox/vboxconfig.sh --preremove --fatal "$ISIPS"40 ${PKG_INSTALL_ROOT:=/}/opt/VirtualBox/vboxconfig.sh --preremove --fatal ${ISIPS} ${DEBUGOPT} 35 41 36 42 if test "$?" -eq 0; then 37 43 echo "Installing new ones..." 38 $PKG_INSTALL_ROOT/opt/VirtualBox/vboxconfig.sh --postinstall 44 $PKG_INSTALL_ROOT/opt/VirtualBox/vboxconfig.sh --postinstall ${DEBUGOPT} 39 45 rc=$? 40 46 if test "$rc" -ne 0; then -
Property svn:executable
set to
-
trunk/src/VBox/Installer/solaris/postinstall.sh
r44211 r44215 20 20 currentzone=`zonename` 21 21 if test "$currentzone" = "global"; then 22 ${PKG_INSTALL_ROOT:=/}/opt/VirtualBox/pkginstall.sh --srv4 22 DEBUGOPT=`set -o | sed -ne 's/^xtrace *on$/--sh-trace/p'` # propagate pkgadd -v 23 ${PKG_INSTALL_ROOT:=/}/opt/VirtualBox/pkginstall.sh --srv4 ${DEBUGOPT} 23 24 rc=$? 24 25 fi -
trunk/src/VBox/Installer/solaris/vboxconfig.sh
-
Property svn:executable
set to
*
r44212 r44215 604 604 fi 605 605 606 # Create the device link for non-remote installs 606 # Create the device link for non-remote installs (not really relevant any more) 607 607 if test "$REMOTEINST" -eq 0; then 608 608 /usr/sbin/devfsadm -i "$MOD_VBOXDRV" 609 if test $? -ne 0 || test ! -h "/dev/vboxdrv" || test ! -h "/dev/vboxdrvu" ; then610 errorprint "Failed to create device link for $MOD_VBOXDRV."611 exit 1612 fi609 #if test $? -ne 0 || test ! -h "/dev/vboxdrv" || test ! -h "/dev/vboxdrvu" ; then 610 # errorprint "Failed to create device link for $MOD_VBOXDRV." 611 # exit 1 612 #fi 613 613 fi 614 614 … … 1222 1222 DIR_CONF="/usr/kernel/drv" 1223 1223 ;; 1224 --sh-trace) # forwarded pkgadd -v 1225 set -x 1226 ;; 1224 1227 --help) 1225 1228 printusage … … 1227 1230 ;; 1228 1231 *) 1229 break 1232 # Take a hard line on invalid options. 1233 errorprint "Invalid command line option: \"$1\"" 1234 exit 1; 1230 1235 ;; 1231 1236 esac -
Property svn:executable
set to
Note:
See TracChangeset
for help on using the changeset viewer.