Compare commits
1 Commits
vagrantfil
...
b81372c07a
| Author | SHA1 | Date | |
|---|---|---|---|
|
b81372c07a
|
6
Vagrantfile
vendored
6
Vagrantfile
vendored
@@ -18,11 +18,7 @@ SSH_FORWARD = settings['SSH_FORWARD'] || false
|
|||||||
PLAYBOOK=ENV["PLAYBOOK"]
|
PLAYBOOK=ENV["PLAYBOOK"]
|
||||||
if !PLAYBOOK || PLAYBOOK.empty?
|
if !PLAYBOOK || PLAYBOOK.empty?
|
||||||
# PLAYBOOK setting in .vagrant.yml (priority #2)
|
# PLAYBOOK setting in .vagrant.yml (priority #2)
|
||||||
PLAYBOOK = settings['PLAYBOOK'] || false
|
PLAYBOOK = settings['PLAYBOOK'] || 'default'
|
||||||
if !PLAYBOOK || PLAYBOOK.empty?
|
|
||||||
puts "[VAGRANTFILE ERROR]: Set PLAYBOOK setting in .vagrant.yml"
|
|
||||||
abort
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
Vagrant.configure("2") do |config|
|
Vagrant.configure("2") do |config|
|
||||||
|
|||||||
4
dev/default.yml
Normal file
4
dev/default.yml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
- name: Install 'default' aka nothing
|
||||||
|
hosts: all
|
||||||
|
become: true
|
||||||
|
tasks: []
|
||||||
Reference in New Issue
Block a user