Skip to content

Instantly share code, notes, and snippets.

include_recipe "mongodb::10gen_repo"
include_recipe "mf-base"
include_recipe "php"
include_recipe "php-fpm"
include_recipe "nginx"
tscanausa@tscanausa-mint ~/vagrant-apt $ vagrant reload
/opt/vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/commands/plugin/state_file.rb:54:in `initialize': Permission denied - /home/tscanausa/.vagrant.d/plugins.json (Errno::EACCES)
from /opt/vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/commands/plugin/state_file.rb:54:in `open'
from /opt/vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/commands/plugin/state_file.rb:54:in `open'
from /opt/vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/commands/plugin/state_file.rb:54:in `save!'
from /opt/vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/commands/plugin/state_file.rb:76:in `upgrade_v0!'
from /opt/vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/commands/plugin/state_file.rb:14:in `initialize'
from /opt/vagrant/embedded/gems/gems/vagrant-1.4.0/lib/vagrant/environment.rb:750:in `new'
from /opt/vagrant/embedded/gems/gems/vagrant-1.4.0/lib/vagrant/environment.rb:750:in `load_plugins'
from /opt/vagrant/embedded/gems/gems/vagrant-1.4.0/lib/vagrant/en
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "precise32"
config.vm.network :forwarded_port, guest: 3000, host: 3033
config.vm.network :forwarded_port, guest: 80, host: 8088
config.vm.network :forwarded_port, guest: 3306, host: 3366
Vagrant.configure("2") do |config|
config.vm.box = "precise32"
config.vm.provider :virtualbox do |vb|
vb.gui = true
end
config.vm.provision :chef_solo do |chef|
chef.cookbooks_path = "./cookbooks"