From 26fd73bd2de53966fe230d39168867349e446f47 Mon Sep 17 00:00:00 2001 From: fox Date: Fri, 2 Dec 2022 22:47:37 -0600 Subject: [PATCH] WIP vagrant init --- Vagrantfile | 165 ++++++++++++++++++++-------------------------------- 1 file changed, 62 insertions(+), 103 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 0d44b4d230..1e5507a560 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -1,137 +1,96 @@ # -*- 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 = <