kusnier/vagrant-persistent-storage

Never ending boot

agustinustan opened this issue · 2 comments

Host Windows 8.1
Vagrant version: 1.6.3
version 0.0.12
box ubuntu/trusty64

Everything is working fine at the first time, until I restart( vagrant halt, vagrant up)
The boot process is never ending for the second time.

Running smoothly when I test it on hashicorp/precise32 box. Can we add the list of supported box (well tested) in the readme?

Just find out the cause of the problem. There is no lvm2 installed on ubuntu/trusty64.
I can solve it by doing the followings:

  1. Adding provision config in Vagrantfile : config.vm.provision "shell", inline: "sudo apt-get install -y lvm2"
  2. vagrant up
  3. vagrant halt
  4. Adding plugin config in Vagrantfile
  5. vagrant up

Will be nice if the plugin can check the dependencies and try to install them.

Please add config.persistent_storage.use_lvm = false to your setup.
This should solve you problem.