Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some new things in vagrant... #11

Open
hurrycaner opened this issue Feb 18, 2014 · 2 comments
Open

Some new things in vagrant... #11

hurrycaner opened this issue Feb 18, 2014 · 2 comments

Comments

@hurrycaner
Copy link

Could you update vagrantfile to the new API

There are some new things in vagrant nowdays, one of them is a plugin that allows windows hosts to use nfs... (https://github.com/GM-Alex/vagrant-winnfsd) that can be installed as easy as this:

vagrant plugin install vagrant-winnfsd

And i think that the current vagrant file could be just like this:

# -*- mode: ruby -*-
# vi: set ft=ruby :

VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
    config.vm.box = "precise64"
    config.vm.box_url = "http://files.vagrantup.com/precise64.box"
    #config.vm.network :hostonly, "33.33.33.100"
    config.vm.network "private_network", ip: "33.33.33.100"
    #config.vm.share_folder("symfony", "/vagrant", "./", :nfs => true)
    config.vm.synced_folder ".", "/vagrant", type: "nfs"

    config.vm.provision :puppet do |puppet|
        puppet.manifests_path = "puppet/manifests"
        puppet.module_path = "puppet/modules"
        puppet.options = ['--verbose']
    end
end

By the way, good job with this box 😃

@irmantas
Copy link
Owner

Hi, thanks for support, I would look in to this and update repository ASAP

@hurrycaner
Copy link
Author

With vagrant 1.5, there are new synced folder types...
And i found out that sendfile is set "on" on nginx, it should be off... because it can cause trouble when running a box through virtualbox

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants