From a2dd3cec50bc92d129f6ff314a4bac5698c1f761 Mon Sep 17 00:00:00 2001 From: padington Date: Tue, 15 Jul 2014 20:32:38 +0400 Subject: [PATCH] bak file deleted --- Vagrantfile.bak | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 Vagrantfile.bak diff --git a/Vagrantfile.bak b/Vagrantfile.bak deleted file mode 100644 index 836701e..0000000 --- a/Vagrantfile.bak +++ /dev/null @@ -1,38 +0,0 @@ -# -*- mode: ruby -*- -# vi: set ft=ruby : - -Vagrant.configure("2") do |config| - # All Vagrant configuration is done here. The most common configuration - # options are documented and commented below. For a complete reference, - # please see the online documentation at vagrantup.com. - - config.vm.box = "precise64" - config.vm.box_url = "http://files.vagrantup.com/precise64.box" - config.vm.hostname = "oracle" - - # Forward Oracle port - config.vm.network :forwarded_port, guest: 1521, host: 1521 - - # Provider-specific configuration so you can fine-tune various backing - # providers for Vagrant. These expose provider-specific options. - config.vm.provider :virtualbox do |vb| - # Use VBoxManage to customize the VM - vb.customize ["modifyvm", :id, - "--name", "oracle", - # Oracle claims to need 512MB of memory available minimum - "--memory", "512", - # Enable DNS behind NAT - "--natdnshostresolver1", "on"] - end - - config.vm.provision :shell, :inline => "echo \"America/New_York\" | sudo tee /etc/timezone && dpkg-reconfigure --frontend noninteractive tzdata" - - config.vbguest.auto_update = false - - config.vm.provision :puppet do |puppet| - puppet.manifests_path = "manifests" - puppet.module_path = "modules" - puppet.manifest_file = "base.pp" - puppet.options = "--verbose --trace" - end -end