Sha256: 2cd478ef8365e74710648e9d70cebdd299a04f9c2bef0f06b1efd63697255e7b

Contents?: true

Size: 657 Bytes

Versions: 40

Compression:

Stored size: 657 Bytes

Contents

module Brightbox
  command [:servers] do |cmd|

    cmd.desc I18n.t("servers.destroy.desc")
    cmd.arg_name "[server-id...]"
    cmd.command [:destroy] do |c|
      c.action do |_global_options, _options, args|

        raise "You must specify servers to destroy" if args.empty?

        servers = Server.find_or_call(args) do |id|
          raise "Couldn't find server #{id}"
        end

        servers.each do |server|
          info "Destroying server #{server}"
          begin
            server.destroy
          rescue Brightbox::Api::Conflict
            error "Could not destroy #{server}"
          end
        end

      end
    end
  end
end

Version data entries

40 entries across 40 versions & 1 rubygems

Version Path
brightbox-cli-3.3.0 lib/brightbox-cli/commands/servers/destroy.rb
brightbox-cli-3.2.0 lib/brightbox-cli/commands/servers/destroy.rb
brightbox-cli-3.1.0 lib/brightbox-cli/commands/servers/destroy.rb
brightbox-cli-3.0.1 lib/brightbox-cli/commands/servers/destroy.rb
brightbox-cli-3.0.0 lib/brightbox-cli/commands/servers/destroy.rb
brightbox-cli-2.12.0 lib/brightbox-cli/commands/servers/destroy.rb
brightbox-cli-2.11.2 lib/brightbox-cli/commands/servers/destroy.rb
brightbox-cli-2.11.1 lib/brightbox-cli/commands/servers/destroy.rb
brightbox-cli-2.11.0 lib/brightbox-cli/commands/servers/destroy.rb
brightbox-cli-2.10.0 lib/brightbox-cli/commands/servers/destroy.rb
brightbox-cli-2.9.3 lib/brightbox-cli/commands/servers/destroy.rb
brightbox-cli-2.9.2 lib/brightbox-cli/commands/servers/destroy.rb
brightbox-cli-2.9.1 lib/brightbox-cli/commands/servers/destroy.rb
brightbox-cli-2.9.0 lib/brightbox-cli/commands/servers/destroy.rb
brightbox-cli-2.8.2 lib/brightbox-cli/commands/servers/destroy.rb
brightbox-cli-2.8.1 lib/brightbox-cli/commands/servers/destroy.rb
brightbox-cli-2.8.0 lib/brightbox-cli/commands/servers/destroy.rb
brightbox-cli-2.7.1 lib/brightbox-cli/commands/servers/destroy.rb
brightbox-cli-2.7.0 lib/brightbox-cli/commands/servers/destroy.rb
brightbox-cli-2.6.0 lib/brightbox-cli/commands/servers/destroy.rb