From fbf5237de2cc16bf15815108bb2b993d8d32cc7c Mon Sep 17 00:00:00 2001 From: Mike Fiedler Date: Sun, 8 Jan 2012 00:16:18 -0500 Subject: [PATCH] missing require tempfile, and fixed a typo --- lib/vagrant/guest/redhat.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/vagrant/guest/redhat.rb b/lib/vagrant/guest/redhat.rb index 56f783ce3..9445f9f93 100644 --- a/lib/vagrant/guest/redhat.rb +++ b/lib/vagrant/guest/redhat.rb @@ -1,4 +1,5 @@ require 'set' +require 'tempfile' require 'vagrant/util/template_renderer' @@ -46,7 +47,7 @@ module Vagrant # The path to the directory with the network configuration scripts. # This is pulled out into its own directory since there are other - # operationg systems (SuSE) which behave similarly but with a different + # operating systems (SuSE) which behave similarly but with a different # path to the network scripts. def network_scripts_dir '/etc/sysconfig/network-scripts'