Sophia Castellarin
Sophia Castellarin
This may be fixed in part by https://github.com/hashicorp/vagrant-plugin-sdk/pull/188. Or at least the issue of newlines being prepended when accepting input.
You can work around this issue by specifying the type of network. For example: ``` config.vm.network "private_network", type: "static6", ip: "3001::10", nic_type: "82540EM", virtualbox__intnet: "mynetwork", netmask: "96" ``` I think...
Found a little bug with running `global-status` when multiple projects have running machines. Given two Vagrant projects in ~/project/vagrant ``` Vagrant.configure("2") do |config| config.vm.define "one" do |c| c.vm.box = "hashicorp/bionic64"...
This is probably fixed (or close to fixed) by https://github.com/hashicorp/vagrant/pull/12904/
heya @torarnv could you provide some extra information about what version of macOS you are running.
Heya thanks for opening up an issue! One way to change the current Vagrant context is to use the [VAGRANT_CWD](https://www.vagrantup.com/docs/other/environmental-variables) environment variables. When set it will execute a Vagrant command...
Hey there, please refer to the [Vagrant documentation](https://www.vagrantup.com/docs/synced-folders/basic_usage) about synced folders for how the type of synced folder is determined. > type (string) - The type of synced folder. If...
> Please note that the referenced documentation makes no mention of allowed_synced_folder_types True 😬 that has been addressed in this PR https://github.com/hashicorp/vagrant/pull/12938 For the issue with the synced folder, I...
One important detail about the `allowed_synced_folder_types` setting is that it is only applicable when Vagrant is guessing at the best synced folder plugin to use for whatever synced folders need...
Hey there, It looks like this is an issue with the install script opposed to a bug with Vagrant. You can follow the [instructions provided by Docker](https://docs.docker.com/engine/install/ubuntu/) to automate installing...