Changeset 9118 in vbox
- Timestamp:
- May 26, 2008 11:29:22 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/installer/vboxvfs.sh
r9108 r9118 141 141 } 142 142 } 143 # Mount all shared folders from /etc/fstab. Normally this is done by some 144 # other startup script but this requires the vboxdrv kernel module loaded. 145 mount -a -t vboxsf 143 146 succ_msg 144 147 return 0 … … 147 150 stop() { 148 151 begin "Stopping VirtualBox Additions shared folder support "; 149 if running; then 150 rmmod $modname 2>/dev/null || fail "Cannot unload module $modname" 152 if umount -a -t vboxsf 2>/dev/null; then 153 if running; then 154 rmmod $modname 2>/dev/null || fail "Cannot unload module $modname" 155 fi 156 succ_msg 157 else 158 fail "Cannot unmount vboxsf folders" 151 159 fi 152 succ_msg153 160 return 0 154 161 }
Note:
See TracChangeset
for help on using the changeset viewer.