From 928652e753a56fd6aabc3581c7c3420e4e1d28a4 Mon Sep 17 00:00:00 2001 From: Kris Lamoureux Date: Mon, 28 Aug 2023 19:42:25 -0400 Subject: [PATCH] testing --- Vagrantfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index ebe5693..fae3729 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -16,13 +16,9 @@ SSH_FORWARD = settings['SSH_FORWARD'] || false # Default to shell environment variable: PLAYBOOK (priority #1) PLAYBOOK=ENV["PLAYBOOK"] -if !PLAYBOOK +if !PLAYBOOK || PLAYBOOK.empty? # PLAYBOOK setting in .vagrant.yml (priority #2) PLAYBOOK = settings['PLAYBOOK'] || false - if !PLAYBOOK || PLAYBOOK.empty? - puts "[VAGRANTFILE ERROR]: Set PLAYBOOK setting in .vagrant.yml" - abort - end end Vagrant.configure("2") do |config|