Changeset 47366 in vbox for trunk/src/VBox/Installer/darwin/VirtualBox
- Timestamp:
- Jul 24, 2013 10:16:08 AM (11 years ago)
- Location:
- trunk/src/VBox/Installer/darwin/VirtualBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/darwin/VirtualBox/postflight
r47362 r47366 15 15 CP="/bin/cp -f" 16 16 CPDIR="${CP} -R" 17 18 #19 # Correct the ownership of the directories in case there20 # was an existing installation.21 #22 chown -R root:admin /Applications/VirtualBox.app23 17 24 18 # … … 91 85 fi 92 86 87 # Check environment. 88 if [ "${INSTALLER_TEMP}x" == "x" ]; then 89 echo "Required environment variable INSTALLER_TEMP is missing. Aborting installation." 90 exit 1; 91 fi 92 93 93 # Restore previously installed Extension Packs (if any) 94 94 if [ -d "${INSTALLER_TEMP}/ExtensionPacks" ]; then … … 97 97 fi 98 98 99 # 100 # Correct the ownership of the directories in case there 101 # was an existing installation. 102 # 103 chown -R root:admin /Applications/VirtualBox.app 104 99 105 exit 0; -
trunk/src/VBox/Installer/darwin/VirtualBox/preinstall
r47362 r47366 13 13 # 14 14 15 set -e 16 17 # Check environment. 18 if [ "${INSTALLER_TEMP}x" == "x" ]; then 19 echo "Required environment variable INSTALLER_TEMP is missing. Aborting installation." 20 exit 1; 21 fi 22 15 23 # Backup previously installed Extension Packs before 16 24 # installation process will completely remove previously installed
Note:
See TracChangeset
for help on using the changeset viewer.