Changeset 22083 in vbox for trunk/src/VBox/Installer
- Timestamp:
- Aug 7, 2009 6:21:11 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 50831
- Location:
- trunk/src/VBox/Installer/solaris
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/solaris/postinstall.sh
r22082 r22083 35 35 rc=$? 36 36 if test "$rc" -eq 0; then 37 echo "Installing new bits..."37 echo "Installing new ones..." 38 38 /opt/VirtualBox/vboxconfig.sh postinstall 39 39 fi 40 40 rc=$? 41 if test "$rc" -eq 0; then 42 echo "Completed Successfully!" 43 else 41 if test "$rc" -ne 0; then 44 42 echo "Completed but with errors." 43 rc=20 45 44 fi 46 45 fi … … 48 47 /usr/sbin/installf -f $PKGINST 49 48 50 echo "Done."51 52 49 # return 20 = requires reboot, 2 = partial failure, 0 = success 53 50 exit "$rc" -
trunk/src/VBox/Installer/solaris/preremove.sh
r22082 r22083 18 18 # 19 19 20 echo "Sun VirtualBox - preremove script" 21 echo "This script will unload the VirtualBox kernel module..." 20 echo "Removing VirtualBox drivers and services..." 22 21 23 22 currentzone=`zonename`
Note:
See TracChangeset
for help on using the changeset viewer.