Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Install hostmanager vagrant plugin - Unable to use symlinks on Windows

I'm trying to write Vagrantfile with hostmanager plugin on Windows 10 but have a problem. After plugin install got warning like below and finally 'hostmanager' could not be found:

λ vagrant plugin install hostmanager
Installing the 'hostmanager' plugin. This can take a few minutes...
Fetching: rubyhacks-0.1.5.gem (100%)
Fetching: hostmanager-1.2.2.gem (100%)
WARNING:  Unable to use symlinks on Windows, installing wrapper
Installed the plugin 'hostmanager (1.2.2)'!

λ vagrant up
Bringing machine 'foo' up with 'virtualbox' provider...
There are errors in the configuration of this machine. Please fix
the following errors and try again:

vm:
* The 'hostmanager' provisioner could not be found.

Vagrant:
* Unknown configuration section 'hostmanager'.

How to solve this symlinks problem?

like image 328
TomaszKane Avatar asked Oct 12 '25 19:10

TomaszKane


1 Answers

type

vagrant plugin install vagrant-hostmanager

and it will be work fine

like image 100