Sha256: 543e32310bf87bb4f06625e5f334de7bb7e5951caa3c36ff78168ad139744af7

Contents?: true

Size: 431 Bytes

Versions: 82

Compression:

Stored size: 431 Bytes

Contents

require "vagrant"

module VagrantPlugins
  module CommandStatus
    class Plugin < Vagrant.plugin("2")
      name "status command"
      description <<-DESC
      The `status` command shows what the running state (running/saved/..)
      is of all your virtual machines in this environment.
      DESC

      command("status") do
        require File.expand_path("../command", __FILE__)
        Command
      end
    end
  end
end

Version data entries

82 entries across 75 versions & 13 rubygems

Version Path
vagrant-actionio-0.0.9 vendor/bundle/bundler/gems/vagrant-c74251a1d9c0/plugins/commands/status/plugin.rb
vagrant-lxc-0.0.1 vendor/vagrant/plugins/commands/status/plugin.rb