Skip to content

Commit

Permalink
❇️ migrate Vagrantfile from trusty64 to bionic64
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsavio committed Jul 30, 2018
1 parent 4812564 commit 2ad447f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Vagrant.configure("2") do |config|

config.vm.define :vepcon, :autostart => true do |node|
node.vm.box = "ubuntu/trusty64"
node.vm.box = "ubuntu/bionic64"
node.vm.hostname = 'vepcon'
node.vm.network :private_network, ip: "10.0.11.10"
node.vm.synced_folder ".", "/vagrant", type: "virtualbox"
Expand Down
2 changes: 2 additions & 0 deletions host_vars/vepcon.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
---

ansible_python_interpreter: /usr/bin/python3

user: "{{ ansible_user }}"
group: "{{ ansible_user }}"

Expand Down
2 changes: 1 addition & 1 deletion vagrant/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ sudo apt-get -y upgrade

HOME=/home/vagrant

sudo apt-get -y install ssh curl rsync sshpass python language-pack-en
sudo apt-get -y install ssh curl rsync sshpass language-pack-en

cp -f /vagrant/roles/ssh/files/id_rsa.pub ${HOME}/.ssh/
cp -f /vagrant/roles/ssh/files/id_rsa.pub ${HOME}/.ssh/authorized_keys
Expand Down

0 comments on commit 2ad447f

Please sign in to comment.