diff --git a/Vagrantfile b/Vagrantfile index 0d44b4d2304..1ec6f258616 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -1,137 +1,100 @@ # -*- mode: ruby -*- # vi: set ft=ruby : -ENV["PORT"] ||= "3000" +REQUIRED_PLUGINS = %w(vagrant-libvirt) +exit unless REQUIRED_PLUGINS.all? do |plugin| + Vagrant.has_plugin?(plugin) || ( + puts "The #{plugin} plugin is required. Please install it with:" + puts "$ vagrant plugin install #{plugin}" + false + ) +end $provision = <