mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-25 19:54:38 +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
0e89621f76
commit
5d80b5dfcd
@ -49,7 +49,7 @@ start()
|
|||||||
export no_proxy="$(mobyconfig get proxy/exclude)"
|
export no_proxy="$(mobyconfig get proxy/exclude)"
|
||||||
fi
|
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
|
for d in Users Volumes private
|
||||||
do
|
do
|
||||||
|
Loading…
Reference in New Issue
Block a user