Brian Cain
Brian Cain
Hey there @srg9000 - While you are getting a stacktrace from Vagrant, it is because Vagrant timed out waiting for your guest to boot and lost a connection to the...
Hi there, Thank you for opening an issue. However, there is not enough information here to reproduce or provide a recommendation. When you first open an issue, a template is...
@godfryd You did not specify: - What Vagrant guest (and operating system) you are trying this is on - How you are trying to configure it through Vagrant inside a...
This could easily be accomplished by using the `auto_config: false` flag for the network config option. You can then use a provisioner or trigger to run after the guest is...
@auriusbendikas - is it not possible to do something like: ```ruby Vagrant.configure("2") do |config| # ... config.vm.provider "virtualbox" do |vb| vb.customize ["import", :id, "--options", "importtovdi"] end end ``` for enabling...
Hi, if the goal is essentially https://github.com/hashicorp/vagrant/pull/7378, then my new pull request https://github.com/hashicorp/vagrant/pull/11349 will do this out of the box. You will be able to resize disk images with Vagrant...
@vadbes46 - Sure, that makes sense :+1: if you wanted to make a new feature request issue for that, that would be great!
Hey there @robnagler - I tried reproducing this and could not: ``` vagrant@vagrant:~/test$ sudo !! sudo chmod 600 /etc/exports vagrant@vagrant:~/test$ ls -lah /etc/exports -rw------- 1 root root 389 Aug 3...
@robnagler - Same result. Again, without a debug log it's difficult for us to figure out what's going on. ``` vagrant@vagrant:~/test$ sudo -k vagrant@vagrant:~/test$ ls -lah /etc/exports -rw------- 1 root...
@robnagler - Ah ok, so it looks like this won't happen on the first up of a guest unless there are other guests already running, just an FYI. I was...