1 Commits

Author SHA1 Message Date
b81372c07a Fix the Vagrantfile for Github runners 2023-08-30 19:45:42 -04:00
2 changed files with 5 additions and 5 deletions

6
Vagrantfile vendored
View File

@@ -18,11 +18,7 @@ SSH_FORWARD = settings['SSH_FORWARD'] || false
PLAYBOOK=ENV["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
PLAYBOOK = settings['PLAYBOOK'] || 'default'
end
Vagrant.configure("2") do |config|

4
dev/default.yml Normal file
View File

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