Re: [vagrant-up] Unable to join HyperV node to swarm

2020-05-12 Thread Alvaro Miranda Aguilera
hello attached what works were some error on the script and removed yum upgrade. better not do that as may break modules in the kernel. default: Installed: default: awscli.noarch 0:1.14.28-5.el7_5.1 default: default: Dependency Installed: default: PyYAML.x86_64

[vagrant-up] VMWare VDI / Vagrant

2020-05-12 Thread Mohan Radhakrishnan
Hi, I am trying to provision a set of development tools using Vagrant on VMWare VDI's. The development tools comprise IDE's , JDK, NodeJS and similar tools. Do others here use this setup ? Could you share any views ? Thanks, Mohan -- This mailing list is governed under the HashiCorp

[vagrant-up] Vagrant: Newbee troubleshooting - Provision - Cannot uninstall requirement

2020-05-12 Thread SColeman
Vagrant has been running fine for a while for me. I made some changes to some code and then provision the changes (in the way that I always do). While the provision is running however I get the following error: *strats: Cannot uninstall requirement condor, not installed* *strats: Cannot

[vagrant-up] Re: how to disable automatic box update

2020-05-12 Thread dragon788
Jeff is correct, if you are trying to avoid getting the latest version of a box and how to get a specific version that one should contain 7.5. Once you have that box with 7.5 it will be up to you to block updates from happening inside the VM by adding some commands to the provisioning block

[vagrant-up] Re: VMWare VDI / Vagrant

2020-05-12 Thread dragon788
You will probably want to use Packer to build out a base image and push it into your VMware infrastructure, then you can possibly configure access to the VMs via Vagrant with a vSphere connection, but as far as I'm aware the Vagrant VMware plugin is ONLY for use with the "desktop" line of

Re: [vagrant-up] Post Collision on 2222 with Vagrant Up

2020-05-12 Thread dragon788
I used to use these aliases for diagnosing/correcting this issue a few years ago. https://gist.github.com/dragon788/a3b72197c82cf6a4de3f There is some kind of a race condition with the VMware provider and VMware's networking setup that causes hiccups occasionally. Resetting the network

[vagrant-up] Re: how to disable automatic box update

2020-05-12 Thread yusuf yazıcı
Hello Jeff & Dragon788, Thank you for your updates. But my Vagrant file is exactly as you stated. Vagrant.configure("2") do |config| config.vm.box = "centos/7" config.vm.box_version = "1809.01" end Vagrant is booting up virtual machine with centos 7.5 and right after upgrading to 7.8.

Re: [vagrant-up] Re: how to disable automatic box update

2020-05-12 Thread 'Jeff Bonhag' via Vagrant
Hi Yusef, Thanks for the additional information. The update is coming from the vagrant-vbguest plugin, which runs a system update so that it can compile the kernel extension for the VirtualBox guest additions. That `yum update` will update the `centos-release` package from 7.5 to 7.8. If you

Re: [vagrant-up] Post Collision on 2222 with Vagrant Up

2020-05-12 Thread Wes Smith
Thanks for the tips. I regularly clean out /Library/Preferences/VMware\ Fusion/vmnet8/nat.conf on OSX and doing so hasn't helped me at all with this situation. Anyone else have ideas? On Tuesday, May 12, 2020 at 9:26:47 AM UTC-7, dragon788 wrote: > > I used to use these aliases for

Re: [vagrant-up] Vagrant: Newbee troubleshooting - Provision - Cannot uninstall requirement

2020-05-12 Thread Alvaro Miranda Aguilera
vagrant is just running an script here so the best will ask for guidance from the app you are trying to use alvaro. On Tue, May 12, 2020 at 12:11 PM SColeman wrote: > Vagrant has been running fine for a while for me. I made some changes to > some code and then provision the changes (in the