Skip to content

Instantly share code, notes, and snippets.

@rogeriopradoj
Last active December 15, 2015 08:39
Show Gist options
  • Select an option

  • Save rogeriopradoj/5232499 to your computer and use it in GitHub Desktop.

Select an option

Save rogeriopradoj/5232499 to your computer and use it in GitHub Desktop.
Vagrantfile, versão 32-bit para o projeto https://github.com/ThamaraHessel/DojoOnline/tree/vagrant, serve para quem tiver problemas em subir a máquina virtual com a `precise64`, e não conseguir habilitar na BIOS o VT-X, conforme discussão nessa lista: https://groups.google.com/forum/?fromgroups=#!topic/vagrant-up/4rOCCWfILYc
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant::Config.run do |config|
# define box base
config.vm.box = "precise32"
# url para download automático da box se primeira utilização
config.vm.box_url = "http://files.vagrantup.com/precise32.box"
# define modo interface de rede e ip fixo
config.vm.network :hostonly, "192.168.33.10"
# provisiona a máquina
config.vm.provision :shell do |shell|
shell.path = "vagrant.sh"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment