Small changes to auto-generated vagrantfile
authorLorin Hochstein <lhochstein@netflix.com>
Tue, 20 Sep 2016 05:13:38 +0000 (22:13 -0700)
committerLorin Hochstein <lhochstein@netflix.com>
Sat, 24 Sep 2016 05:25:01 +0000 (22:25 -0700)
The auto-generated vagrantfile changed a little bit

ch01/playbooks/Vagrantfile

index 12d9294..35b7908 100644 (file)
@@ -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