vagrant-landrush / landrush

A Vagrant plugin that provides a simple DNS server for Vagrant guests
MIT License
666 stars 78 forks source link

Support Vagrant 1.9.0 #295

Closed njam closed 5 years ago

njam commented 7 years ago

Also some problems reported here: https://github.com/vagrant-landrush/landrush/issues/292

hferentschik commented 7 years ago

Thanks for looking into this. It was on my todo list, after seeing some reports with problems using 1.9.0.

I think, however, I will still release a v1.2.0 with the current head (which will support Vagrant up to 1.9.0) and then we can address this issue.

khaije1 commented 7 years ago

A work-around (intended to follow version changes, so might not break right away) :)

ln -f -s $(find ~/.vagrant.d/gems/* -type d -maxdepth 0 2>/dev/null | sort -r | head -1) ~/.vagrant/gems/gems
joelio commented 7 years ago

This workaround sorts it for me on OSX (extended from @khaije1 note)

ln -f -s $(find ~/.vagrant.d/gems/* -type d -maxdepth 0 2>/dev/null | sort -r | head -1) ~/.vagrant.d/gems/gems && vagrant plugin expunge --reinstall

tristanbes commented 7 years ago

any update on this ? we're using 1.9.1 on OSX but with the patch provided by @joelio , we're having ERR_NAME_NOT_RESOLVED problems.

tristanbes commented 7 years ago

Here's a working fix on OSX :

cd ~/.vagrant.d/gems
ln -s 2.2.5/gems

do this BEFORE install landrush. Or uninstall the plugin, run the patch, and install again.

thanks to @nervo for sharing.

thor commented 7 years ago

I'm no big fan of bumping things, so believe me when I say that I feel guilty for poking around here. :) With that said, I'm an avid landrush user, though I'm no good of a Ruby developer, so I'm merely interested in querying so that I can look into alternative solutions for myself.

Is it a matter of landrush currently being a deprioritized project, @hferentschik? It seems there are some forks with the vagrant-1.9 patches applied, as well as other minor things. #292 and #296 put a stick or so in the wheels. I wonder how come the issue is labeled os/windows, and not Linux and Mac as well, or just OS independent? :)

Otherwise, for now, I'm using njam's current branch with a manually built gemspec, which does the job on Linux.

joelio commented 7 years ago

Yea, not sure why it has an os/windows flag on, it's platform independent

robertoschwald commented 7 years ago

Any news on this?

petrkotas commented 6 years ago

I have updated the vagrant to 2.0 and the landrush started working. It seems that vagrant team fixed it.

hferentschik commented 5 years ago

See also #324