Remove Ansible from the Vagrant environment

Change-Id: If0a161504424646aad49bcd7cb8f0636fa05db28
This commit is contained in:
Christian Berendt 2015-04-05 19:06:54 +02:00
parent 7e8d85658b
commit 8daf4fb059
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