Commit d2c65f4337d00d2b6be0ec7c0cc21893e49a86cb
1 parent
67eac0af
Exists in
master
Correção de bug VirtualBox Guest Additions
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
Vagrantfile
| ... | ... | @@ -56,9 +56,9 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| |
| 56 | 56 | end |
| 57 | 57 | |
| 58 | 58 | # Correção da bug do VirtualBox relacionado ao Guest Additions |
| 59 | - config.vm.provision "shell", inline: <<SCRIPT | |
| 59 | + config.vm.provision "shell", run: "always", inline: <<SCRIPT | |
| 60 | 60 | apt-get update -y |
| 61 | - apt-get install linux-headers-$(uname -r) dkms | |
| 61 | + apt-get install -y linux-headers-$(uname -r) dkms | |
| 62 | 62 | /etc/init.d/vboxadd setup |
| 63 | 63 | SCRIPT |
| 64 | 64 | ... | ... |