Skip to content

Instantly share code, notes, and snippets.

@binocchi
Created October 25, 2015 04:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save binocchi/c359749e789c9b0ed292 to your computer and use it in GitHub Desktop.
Save binocchi/c359749e789c9b0ed292 to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
# vi: set ft=ruby :
# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure(2) do |config|
# Every Vagrant development environment requires a box. You can search for
# boxes at https://atlas.hashicorp.com/search.
config.vm.box = "centos6.6"
config.ssh.pty = true;
config.vm.define :server do |server|
server.vm.network "private_network", ip: "192.168.10.104"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment