From 9eedb2e9494ab8bf4d0e796c4b4c2e3f6c86d243 Mon Sep 17 00:00:00 2001 From: Alan Peabody Date: Tue, 18 Mar 2014 23:15:01 -0400 Subject: [PATCH] Update example vagrant file with real URLs. --- .gitignore | 1 + Vagrantfile.example | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 8000dd9..4ddae5a 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ .vagrant +Vagrantfile diff --git a/Vagrantfile.example b/Vagrantfile.example index 7116d0c..c41fc80 100644 --- a/Vagrantfile.example +++ b/Vagrantfile.example @@ -16,7 +16,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| vb.customize ['modifyvm', :id, '--memory', '512'] end - config.vm.provision 'shell', path: 'base.sh' - config.vm.provision 'shell', path: 'ruby-2.1.sh', privileged: false, keep_color: true - config.vm.provision 'shell', path: 'postgresql.sh' + config.vm.provision 'shell', path: 'https://raw.github.com/AgilionApps/VagrantDevEnv/master/scripts/base.sh' + config.vm.provision 'shell', path: 'https://raw.github.com/AgilionApps/VagrantDevEnv/master/scripts/ruby-2.1.sh', privileged: false, keep_color: true + config.vm.provision 'shell', path: 'https://raw.github.com/AgilionApps/VagrantDevEnv/master/scripts/postgresql.sh' end