diff --git a/Vagrantfile b/Vagrantfile index 78b00fb..ad45f29 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -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" diff --git a/ansible/playbook.yaml b/ansible/playbook.yaml deleted file mode 100644 index 0dbf13e..0000000 --- a/ansible/playbook.yaml +++ /dev/null @@ -1,5 +0,0 @@ -- hosts: all - sudo: True - - tasks: - - apt: update-cache=yes upgrade=yes