X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=Vagrantfile;h=7cba18e48a77fcb81941b6711d1484ad22dcd9a2;hb=2ddea652655c654d69a8f8aff835555520776fb9;hp=8df0f0eea6ef6cbd2c148e0bd450461db9359eea;hpb=0f52fc1fdafad805626b6d60d481f06bbc9b05b6;p=osm%2Fvim-emu.git diff --git a/Vagrantfile b/Vagrantfile index 8df0f0e..7cba18e 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -4,7 +4,7 @@ # # This Vagrant file create a son-emu VM. # - +# # All Vagrant configuration is done below. The "2" in Vagrant.configure # configures the configuration version (we support older styles for # backwards compatibility). Please don't change it unless you know what @@ -32,7 +32,7 @@ Vagrant.configure(2) do |config| # Create a forwarded port mapping which allows access to a specific port # within the machine from a port on the host machine. In the example below, # accessing "localhost:8080" will access port 80 on the guest machine. - # config.vm.network "forwarded_port", guest: 80, host: 8080 + config.vm.network "forwarded_port", guest: 5000, host: 5000 # Create a private network, which allows host-only access to the machine # using a specific IP. @@ -78,7 +78,7 @@ Vagrant.configure(2) do |config| # Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the # documentation for more information about their specific syntax and use. config.vm.provision "shell", inline: <<-SHELL - #sudo apt-get update + sudo apt-get update sudo apt-get install -y git ansible aptitude sudo echo "localhost ansible_connection=local" >> /etc/ansible/hosts # install containernet @@ -95,7 +95,11 @@ Vagrant.configure(2) do |config| # execute son-emu tests at the end to validate installation echo "Running son-emu unit tests to validate installation" cd /home/vagrant/son-emu + sudo python setup.py develop sudo py.test -v + + # place motd + sudo cp utils/vagrant/motd /etc/motd SHELL # TODO the native ansible provisioner does not work so we directly call the shell commands