Update pkg source info in deb Vagrantfile 39/45939/1
authorDaniel Farrell <dfarrell@redhat.com>
Tue, 20 Sep 2016 22:17:14 +0000 (18:17 -0400)
committerDaniel Farrell <dfarrell@redhat.com>
Tue, 20 Sep 2016 22:17:48 +0000 (18:17 -0400)
Breaks at apt-get install with 404s otherwise.

Change-Id: I66c1ac34b432b6843522d4ae7adacae55009ed04
Signed-off-by: Daniel Farrell <dfarrell@redhat.com>
deb/Vagrantfile

index abcbda61dba60d4428832b05fe1f22f122ca6676..bfbbeffc73d5d860625f24df604e03f97f52fb65 100644 (file)
@@ -25,6 +25,9 @@ Vagrant.configure("2") do |config|
   # Start from Debian VM so resulting pkgs will build on all Deb derivatives
   config.vm.box = "debian/jessie64"
 
+  # Update package info to prevent old info from causing 404s during install
+  config.vm.provision "shell", inline: "apt-get update"
+
   # Install pkg dev tools, Python libs for build scripts, gdebi to test install
   config.vm.provision "shell", inline: "apt-get install -y --force-yes \
                                             build-essential \