fgrehm / vagrant-cachier

Caffeine reducer
http://fgrehm.viewdocs.io/vagrant-cachier
MIT License
1.08k stars 111 forks source link

issue with git provider from vcsrepo #110

Closed BusyByte closed 10 years ago

BusyByte commented 10 years ago

Vagrant-cachier blew up when provisioning. It didn't know what to do with the git provider: package {'vim': ensure => 'present', require => Exec["update-package-list"], } -> vcsrepo { '/home/vagrant/.vim': ensure => present, provider => git, source => 'https://github.com/dgvigil/vim-colorschemes.git', }

I disabled auto_detect and things work now but it'd be nice to cache the git content also. Here's my config:

if Vagrant.has_plugin?("vagrant-cachier") config.cache.scope = :machine config.cache.auto_detect = false config.cache.enable :apt config.cache.enable :gem end

fgrehm commented 10 years ago

@BusyByte what was the error you experienced over there? I'm not sure what you mean by the plugin blowing up. Please gist the output of running vagrant up from scratch over there so we can better understand what's going on.

Thanks in advance.

fgrehm commented 10 years ago

Please let us know when you have more info!