Open techtonik opened 8 years ago
Some kind of permission problem, but I have no idea
Looks like a pointer - https://github.com/vagrant-libvirt/vagrant-libvirt/issues/274
Failing line 14 in global-setup.sh
is this:
curl $CURL_OPTS https://install.sandstorm.io/ 2>&1 > /host-dot-sandstorm/caches/install.sh | cat
It tries to download a file into /host-dot-sandstorm
dir. This dir is a share endpoint created by libvirt
in passthrough
mode as shown in:
/host-dot-sandstorm, opts: {
:type=>:"9p",
:accessmode=>"passthrough",
:guestpath=>"/host-dot-sandstorm",
:hostpath=>"/home/techtonik/.sandstorm",
:target=>"/host-dot-sandstorm",
...
}
The problem is here - for some reason files can be read in passthrough
mode, but not written. Need to find error log to dig further.
Any progress with this issue? would be really helpful if fixed. Thanks.