2012-05-21 22:43:13 -07:00

20 lines
434 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
activated do
require File.expand_path("../command", __FILE__)
end
command("provision") { Command }
end
end
end