Merge "Remove Ansible from the Vagrant environment"

This commit is contained in:
Jenkins 2015-04-05 17:24:05 +00:00 committed by Gerrit Code Review
commit 24b9f4258a
2 changed files with 2 additions and 9 deletions

6
Vagrantfile vendored
View File

@ -21,10 +21,8 @@ Vagrant.configure(2) do |config|
end
config.ssh.shell = 'bash -c "BASH_ENV=/etc/profile exec bash"'
config.cache.scope = :box if Vagrant.has_plugin?('vagrant-cachier')
config.vm.hostname = 'faafo'
config.vm.provision 'ansible' do |ansible|
ansible.playbook = 'ansible/playbook.yaml'
end
config.vm.provision "shell",
inline: "apt-get update && apt-get upgrade -y"
config.vm.define "services", primary: true do |node|
node.vm.hostname= "services"

View File

@ -1,5 +0,0 @@
- hosts: all
sudo: True
tasks:
- apt: update-cache=yes upgrade=yes