File tree 3 files changed +6
-5
lines changed
3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1
1
.vagrant
2
2
playbook.retry
3
+ * -cloudimg-console.log
Original file line number Diff line number Diff line change @@ -5,15 +5,14 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
5
5
vagrant_root = File . dirname ( __FILE__ )
6
6
ENV [ 'ANSIBLE_ROLES_PATH' ] = "#{ vagrant_root } /.."
7
7
8
- config . vm . box = "ubuntu/xenial64"
9
- # Install python
10
- config . vm . provision "install python" , type : "shell" do |s |
11
- s . inline = "sudo apt-get -y install python-minimal"
12
- end
8
+ config . vm . box = "ubuntu/bionic64"
13
9
14
10
# Run core
15
11
config . vm . provision "role-test" , type : "ansible" do |ansible |
16
12
ansible . verbose = "v"
17
13
ansible . playbook = "playbook.yml"
14
+ ansible . raw_arguments = [
15
+ '-e' , 'ansible_python_interpreter=/usr/bin/python3'
16
+ ]
18
17
end
19
18
end
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ galaxy_info:
11
11
- name : Ubuntu
12
12
versions :
13
13
- xenial
14
+ - bionic
14
15
15
16
galaxy_tags :
16
17
- amazon
You can’t perform that action at this time.
0 commit comments