2012-05-23 16:18:29 -07:00

19 lines
421 B
Ruby

require "vagrant"
module VagrantPlugins
module CommandProvision
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") do
require File.expand_path("../command", __FILE__)
Command
end
end
end
end