December 2018
Beginner
826 pages
22h 54m
English
As introduced in the first chapter, we're going to use Vagrant and VirtualBox for all of our work in this chapter and those going forward. This allows us to quickly provision infrastructure for testing, and saves you the manual job of creating multiple VMs each time.
I've put together the following Vagrantfile for use in this chapter:
# -*- mode: ruby -*-# vi: set ft=ruby :$provisionScript = <<-SCRIPTsed -i 's#PasswordAuthentication no#PasswordAuthentication yes#g' /etc/ssh/sshd_configsystemctl restart sshdSCRIPTVagrant.configure("2") ...