Don't explicitly run apt-get update/upgrade in the provision script.
authorMichael Adam <obnox@samba.org>
Thu, 19 Feb 2015 12:51:42 +0000 (13:51 +0100)
committerMichael Adam <obnox@samba.org>
Thu, 19 Feb 2015 12:51:42 +0000 (13:51 +0100)
not needed.

Vagrantfile

index 5e5957712f29470f72f72275afe389e8227f254f..a619a4f2131f49353edbbee5b593871be45a846c 100644 (file)
@@ -99,8 +99,8 @@ end
 SCRIPT_INSTALL = <<SCRIPT
 set -e
 
-apt-get -y update
-apt-get -y upgrade
+#apt-get -y update
+#apt-get -y upgrade
 apt-get -y install samba
 SCRIPT