From 6a1864011dc27fea032c12bd666f5ce6e449e061 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 26 Dec 2011 18:36:18 -0800 Subject: [PATCH] Require things as they're needed --- lib/vagrant/action/vm/package_vagrantfile.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/vagrant/action/vm/package_vagrantfile.rb b/lib/vagrant/action/vm/package_vagrantfile.rb index 7796f500a..68f3257d2 100644 --- a/lib/vagrant/action/vm/package_vagrantfile.rb +++ b/lib/vagrant/action/vm/package_vagrantfile.rb @@ -1,9 +1,12 @@ +require 'vagrant/util/template_renderer' + module Vagrant module Action module VM # Puts a generated Vagrantfile into the package directory so that # it can be included in the package. class PackageVagrantfile + # For TemplateRenderer include Util def initialize(app, env)