vagrant/plugins/commands/provision/plugin.rb

18 lines
412 B
Ruby

require "vagrant"
module VagrantPlugins
module CommandProvision
autoload :Command, File.expand_path("../command", __FILE__)
class Plugin < Vagrant.plugin("1")
name "provision command"
description <<-DESC
The `provision` command provisions your virtual machine based on the
configuration of the Vagrantfile.
DESC
command("provision") { Command }
end
end
end