From 060a9499c88808cc2cfc74763841f71698e3fc27 Mon Sep 17 00:00:00 2001 From: Jason Sherman Date: Fri, 26 Oct 2018 07:40:36 -0500 Subject: [PATCH 1/3] Use debian jessie --- Vagrantfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 2788103..9338ff4 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -1,8 +1,7 @@ # -*- mode: ruby -*- # vi: set ft=ruby : -twlight_puppet_version = "0.5.2" -#twlight_puppet_version = "master" +twlight_puppet_version = "0.5.3" # Put "--debug " in this string if you want to test the limits of your terminal # emulator's buffer. @@ -29,8 +28,7 @@ Vagrant.configure("2") do |config| config.ssh.forward_agent = true # roughly tracking twlight VMs provisioned via wikimedia labs horizon - config.vm.box = "bento/debian-8" - #config.vm.box_version = "" + config.vm.box = "bento/debian-9" # We need a little beef if we're pulling in production-scale data config.vm.provider :virtualbox do |v| From 712a526f16066b8a2eb383eba08490c910526fcc Mon Sep 17 00:00:00 2001 From: Jason Sherman Date: Fri, 16 Nov 2018 10:20:49 -0600 Subject: [PATCH 2/3] use stretch-specific puppet release --- Vagrantfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 9338ff4..58c6dd9 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -51,8 +51,8 @@ Vagrant.configure("2") do |config| # and vim because the author of this Vagrantfile prefers it. config.vm.provision "shell", inline: "wget --quiet --timestamping --directory-prefix=/tmp \ - https://apt.puppetlabs.com/puppetlabs-release-pc1-jessie.deb && \ - dpkg -i /tmp/puppetlabs-release-pc1-jessie.deb && \ + https://apt.puppetlabs.com/puppetlabs-release-pc1-stretch.deb && \ + dpkg -i /tmp/puppetlabs-release-pc1-stretch.deb && \ apt update && apt install -y chrony puppet-agent vim" @@ -83,6 +83,7 @@ Vagrant.configure("2") do |config| puppet.hiera_config_path = "puppet/hiera.yaml" puppet.environment = "local" puppet.environment_path = "puppet/environments" + puppet.environment_variables = {"APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE" => "1" } puppet.module_path = "puppet/modules" puppet.binary_path = twlight_puppet_bin_path puppet.options = twlight_puppet_options From 75bd5e875bc96deb6a96e467088dcd3f9fec067a Mon Sep 17 00:00:00 2001 From: Jason Sherman Date: Thu, 17 Jan 2019 06:16:58 -0600 Subject: [PATCH 3/3] update puppet provisioner. --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 58c6dd9..1688ec4 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -1,7 +1,7 @@ # -*- mode: ruby -*- # vi: set ft=ruby : -twlight_puppet_version = "0.5.3" +twlight_puppet_version = "0.5.10" # Put "--debug " in this string if you want to test the limits of your terminal # emulator's buffer.