forked from docker/machine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request docker#534 from tianon/vbox-guest-additions
VirtualBox Guest Additions
- Loading branch information
Showing
4 changed files
with
109 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
#!/bin/sh | ||
set -e | ||
|
||
# TODO add more magic like sshfs share setup here <3 | ||
|
||
# VirtualBox Guest Additions | ||
# - this will bail quickly and gracefully if we're not in VBox | ||
if modprobe vboxguest &> /dev/null && modprobe vboxsf &> /dev/null; then | ||
mountOptions='defaults' | ||
if grep -q '^docker:' /etc/passwd; then | ||
mountOptions="${mountOptions},uid=$(id -u docker),gid=$(id -g docker)" | ||
fi | ||
|
||
# try mounting "$name" (which defaults to "$dir") at "$dir", | ||
# but quietly clean up empty directories if it fails | ||
try_mount_share() { | ||
dir="$1" | ||
name="${2:-$dir}" | ||
|
||
mkdir -p "$dir" 2>/dev/null | ||
if ! mount -t vboxsf -o "$mountOptions" "$name" "$dir" 2>/dev/null; then | ||
rmdir "$dir" 2>/dev/null || true | ||
while [ "$(dirname "$dir")" != "$dir" ]; do | ||
dir="$(dirname "$dir")" | ||
rmdir "$dir" 2>/dev/null || break | ||
done | ||
|
||
return 1 | ||
fi | ||
|
||
return 0 | ||
} | ||
|
||
# bfirsh gets all the credit for this hacky workaround :) | ||
try_mount_share /Users 'Users' \ | ||
|| try_mount_share /Users \ | ||
|| try_mount_share /c/Users 'c/Users' \ | ||
|| try_mount_share /c/Users \ | ||
|| try_mount_share /c/Users 'c:/Users' \ | ||
|| true | ||
# TODO replace this whole hacky bit with VBoxService --only-automount | ||
# (the problem with that being that we can't run VBoxService because the | ||
# 32bit VBoxService won't work with the 64bit kernel modules, but the 64bit | ||
# VBoxService won't work with our 32bit userspace; good times) | ||
fi |