From 991569a9ca75c0a6844f09e429a370a34d2357a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nils=20Norman=20Hauk=C3=A5s?= Date: Sun, 15 Jul 2018 17:22:28 +0200 Subject: [PATCH] add notice about NONINTERACTIVE=1 agreeing to Letsencrypt ToS --- Vagrantfile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index b4bcb257..0161ae0d 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -19,9 +19,12 @@ Vagrant.configure("2") do |config| config.vm.network "private_network", ip: "192.168.50.4" config.vm.provision :shell, :inline => <<-SH - # Set environment variables so that the setup script does - # not ask any questions during provisioning. We'll let the - # machine figure out its own public IP. + # Set environment variables so that the setup script does + # not ask any questions during provisioning. We'll let the + # machine figure out its own public IP. + # + # Please note: NONINTERACTIVE=1 mode means that you'll automatically agree + # to Let's Encrypt's ACME Subscriber Agreement. export NONINTERACTIVE=1 export PUBLIC_IP=auto export PUBLIC_IPV6=auto