From e91a4bd49ae3fd857194fc597f0ce92b9184ba8f Mon Sep 17 00:00:00 2001 From: Bill Maxwell Date: Sat, 21 Feb 2015 20:49:04 -0700 Subject: [PATCH] Initial commit --- .gitignore | 2 ++ Vagrantfile | 20 ++++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 .gitignore create mode 100644 Vagrantfile diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bf5d9ea --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*.box +.vagrant diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 0000000..ed73a50 --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,20 @@ +# -*- 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| + config.vm.box = "rancheros" + config.ssh.username = "rancher" + # config.ssh.password = "rancher" + + config.vm.provider "virtualbox" do |vb| + vb.check_guest_additions = false + vb.functional_vboxsf = false + vb.memory = "1024" + end + + config.vm.synced_folder ".", "/vagrant", disabled: true +end