Commit d2c65f4337d00d2b6be0ec7c0cc21893e49a86cb
1 parent
67eac0af
Exists in
sei-v3.0.0-oracle-dockerimages
and in
3 other branches
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 |