[android][vagrant] run final (full) update at the end

This commit is contained in:
Oliver Behnke 2018-11-27 14:31:49 +01:00
parent 490fa1e28c
commit 7b65c6ba31
1 changed files with 5 additions and 1 deletions

6
android/Vagrantfile vendored
View File

@ -158,7 +158,11 @@ Vagrant.configure("2") do |config|
SHELL
end
config.vm.provision "shell", name: "Final cleanup and reboot...", inline: <<-SHELL
config.vm.provision "shell", name: "Final update, cleanup and reboot...", inline: <<-SHELL
export DEBIAN_FRONTEND=noninteractive;
apt-get update
apt-get --assume-yes upgrade
apt-get --assume-yes dist-upgrade
apt-get clean
reboot
SHELL