From cdc01c449d7cccd8054be0b645f0ec8f71d88a90 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sun, 11 Dec 2011 23:24:23 -0800 Subject: [PATCH] Re-order things in vagrant.rb slightly --- lib/vagrant.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/vagrant.rb b/lib/vagrant.rb index 5836332e2..183091b8c 100644 --- a/lib/vagrant.rb +++ b/lib/vagrant.rb @@ -51,16 +51,16 @@ end # # Default I18n to load the en locale I18n.load_path << File.expand_path("templates/locales/en.yml", Vagrant.source_root) -# Load the things which must be loaded before anything else. -require 'vagrant/command' -require 'vagrant/provisioners' -require 'vagrant/systems' -require 'vagrant/version' -Vagrant::Plugin.load! - # Register the built-in hosts Vagrant.hosts.register(:arch) { Vagrant::Hosts::Arch } Vagrant.hosts.register(:freebsd) { Vagrant::Hosts::FreeBSD } Vagrant.hosts.register(:fedora) { Vagrant::Hosts::Fedora } Vagrant.hosts.register(:linux) { Vagrant::Hosts::Linux } Vagrant.hosts.register(:bsd) { Vagrant::Hosts::BSD } + +# Load the things which must be loaded before anything else. +require 'vagrant/command' +require 'vagrant/provisioners' +require 'vagrant/systems' +require 'vagrant/version' +Vagrant::Plugin.load!