Vagrant fails on
The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!
mkdir -p /tmp/vagrant-cache && chmod 777 /tmp/vagrant-cache
Stdout from the command:
Stderr from the command:
stdin: is not a tty
chmod: changing permissions of ���/tmp/vagrant-cache���: Permission denied
This is due to the fact that you cannot chmod an smb folder. File permissions are set at mount time with options
mount_options: ["file_mode=0777", "dir_mode=0777"]
This may be for another ticket, but is 777 really necessary for package storage?
Vagrant fails on
This is due to the fact that you cannot chmod an smb folder. File permissions are set at mount time with options
This may be for another ticket, but is 777 really necessary for package storage?