Changeset 76014 in vbox for trunk/src/VBox/Installer/darwin/DiskImage
- Timestamp:
- Dec 6, 2018 1:05:12 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/darwin/DiskImage/VirtualBox_Uninstall.tool
r73855 r76014 200 200 fi 201 201 202 my_fuse_macos_core_uninstall=0 203 if test "$my_default_prompt" != "Yes" -a -f "/Library/Filesystems/osxfuse.fs/Contents/Resources/uninstall_osxfuse.app/Contents/Resources/Scripts/uninstall_osxfuse.sh"; then 204 echo "VirtualBox detected the FUSE for macOS core package which might've been installed" 205 echo "by VirtualBox itself for the vboximg-mount utility. Do you wish to uninstall" 206 echo "the FUSE for macOS core package (Yes/No)?" 207 read my_answer 208 if test "$my_answer" == "Yes" -o "$my_answer" == "YES" -o "$my_answer" == "yes"; then 209 my_fuse_macos_core_uninstall=1; 210 fi 211 echo "" 212 fi 213 202 214 # 203 215 # Unregister has to be done before the files are removed. … … 229 241 exit 1; 230 242 fi 243 fi 244 245 if test "$my_fuse_macos_core_uninstall" != 0; then 246 echo "Uninstalling the FUSE for macOS core package" 247 /usr/bin/sudo -p "Please enter %u's password:" /Library/Filesystems/osxfuse.fs/Contents/Resources/uninstall_osxfuse.app/Contents/Resources/Scripts/uninstall_osxfuse.sh 231 248 fi 232 249
Note:
See TracChangeset
for help on using the changeset viewer.