Sha256: c3f8e221f54594ecabe9cf0d4562524213256f03690673e91100373c313a3620

Contents?: true

Size: 479 Bytes

Versions: 1

Compression:

Stored size: 479 Bytes

Contents

require "vagrant"

module VagrantPlugins
  module CommandGlobalStatus
    class Plugin < Vagrant.plugin("2")
      name "global-status command"
      description <<-DESC
      The `global-status` command shows what the running state (running/saved/..)
      is of all the Vagrant environments known to the system.
      DESC

      command("global-status") 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/global-status/plugin.rb