Commit 1d8cd25c2c0c6dd8b48dae48889b142cfdef39a3
1 parent
45d3a3e6
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,9 +56,9 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | ||
56 | end | 56 | end |
57 | 57 | ||
58 | # Correção da bug do VirtualBox relacionado ao Guest Additions | 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 | apt-get update -y | 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 | /etc/init.d/vboxadd setup | 62 | /etc/init.d/vboxadd setup |
63 | SCRIPT | 63 | SCRIPT |
64 | 64 |