On my CentOS 7.2 box, I have Vagrant 1.7.2 by default, but I've installed VirtualBox 5.0.x, which apparently 1.7.2 doesn't support. I can install 1.8.1 by RPM. By implication, that appears to support VirtualBox 5.0.x. Can I just install the rpm file, or do I have to do something else first, or is there a more correct way to do this?
--
This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list.
GitHub Issues: https://github.com/mitchellh/vagrant/issues
IRC: #vagrant on Freenode
---
You received this message because you are subscribed to the Google Groups "Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vagrant-up+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/1f73190f-4a88-4f75-bd29-77ca27a7f85a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
HelloYou can always upgrade both, and I am not aware of such limitation of minimum versions.If the latest packages are not available as part of the distribution, you can just grab the rpms from :
file /opt/vagrant/bin/vagrant from install of vagrant-1:1.8.1-1.x86_64 conflicts with file from package vagrant-1:1.7.2-1.x86_64
file /opt/vagrant/embedded/gems/bin/vagrant from install of vagrant-1:1.8.1-1.x86_64 conflicts with file from package vagrant-1:1.7.2-1.x86_64
To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/f49042db-ffec-48e9-a099-30f17d906d44%40googlegroups.com.
yum localinstall <vagrant_rpm>orrpm -ivh <vagrant_rpm>rpm -e vagrantOr you can:you can rpm -Uvh <vagrant_rpm> to upgrade the package.Hello,In rpm based OS you can't have 2 packages that are the same (the only exception is the kernel), so the command need to be different.
You received this message because you are subscribed to a topic in the Google Groups "Vagrant" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/vagrant-up/dE_yIeb51Rc/unsubscribe.
To unsubscribe from this group and all its topics, send an email to vagrant-up+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/CAHqq0ewxWAU6PQgwSEhPOTV5ZQMaLRwN3erL4yzDYy2q5OyxEw%40mail.gmail.com.
yum localinstall <vagrant_rpm>orrpm -ivh <vagrant_rpm>rpm -e vagrantOr you can:you can rpm -Uvh <vagrant_rpm> to upgrade the package.Hello,In rpm based OS you can't have 2 packages that are the same (the only exception is the kernel), so the command need to be different.