1 Commits

Author SHA1 Message Date
a97eb30314 testing 2023-08-23 17:31:52 -04:00
2 changed files with 5 additions and 5 deletions

6
Vagrantfile vendored
View File

@@ -18,7 +18,11 @@ SSH_FORWARD = settings['SSH_FORWARD'] || false
PLAYBOOK=ENV["PLAYBOOK"]
if !PLAYBOOK || PLAYBOOK.empty?
# PLAYBOOK setting in .vagrant.yml (priority #2)
PLAYBOOK = settings['PLAYBOOK'] || 'default'
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|

View File

@@ -1,4 +0,0 @@
- name: Install 'default' aka nothing
hosts: all
become: true
tasks: []