This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
include_recipe "mongodb::10gen_repo" | |
include_recipe "mf-base" | |
include_recipe "php" | |
include_recipe "php-fpm" | |
include_recipe "nginx" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |