mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-08-05 16:53:48 +00:00
fix #169 only do /tmp bind mount if /Mac/tmp exists
Signed-off-by: Justin Cormack <justin.cormack@docker.com>
This commit is contained in:
parent
aa5118fd5f
commit
1fab4151ef
@ -49,7 +49,7 @@ start()
|
||||
export no_proxy="$(mobyconfig get proxy/exclude)"
|
||||
fi
|
||||
|
||||
grep "osxfs /tmp" /etc/mtab -q || mount --bind /Mac/tmp /tmp
|
||||
grep -q "osxfs /tmp" /etc/mtab || ( [ -d /Mac/tmp ] && mount --bind /Mac/tmp /tmp )
|
||||
|
||||
for d in Users Volumes private
|
||||
do
|
||||
|
Loading…
Reference in New Issue
Block a user