Sha256: b4fbd1d89521f58ff3acf451a91a8c01dc8daa9547d10e159761909e8c3a1547

Contents?: true

Size: 439 Bytes

Versions: 1

Compression:

Stored size: 439 Bytes

Contents

require "vagrant"

module VagrantPlugins
  module CommandProvision
    class Plugin < Vagrant.plugin("2")
      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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vagrant-cloudstack-1.2.0 vendor/bundle/bundler/gems/vagrant-c84e05fd063f/plugins/commands/provision/plugin.rb