From 762ca82ff0bb35772433818d28551ac97f28e646 Mon Sep 17 00:00:00 2001 From: Lorin Hochstein Date: Mon, 19 Sep 2016 22:13:38 -0700 Subject: [PATCH] Small changes to auto-generated vagrantfile The auto-generated vagrantfile changed a little bit --- ch01/playbooks/Vagrantfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ch01/playbooks/Vagrantfile b/ch01/playbooks/Vagrantfile index 12d9294..35b7908 100644 --- a/ch01/playbooks/Vagrantfile +++ b/ch01/playbooks/Vagrantfile @@ -5,7 +5,7 @@ # 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| +Vagrant.configure("2") do |config| # The most common configuration options are documented and commented below. # For a complete reference, please see the online documentation at # https://docs.vagrantup.com. @@ -65,7 +65,7 @@ Vagrant.configure(2) do |config| # Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the # documentation for more information about their specific syntax and use. # config.vm.provision "shell", inline: <<-SHELL - # sudo apt-get update - # sudo apt-get install -y apache2 + # apt-get update + # apt-get install -y apache2 # SHELL end -- 2.44.0