Sha256: 7b5cf0dac22084e107e40f59a2bb319ec8365b7c739e86423f72b156a068e594

Contents?: true

Size: 573 Bytes

Versions: 25

Compression:

Stored size: 573 Bytes

Contents

# Copyright (c) 2012-2013 Stark & Wayne, LLC

module Bosh; module Bootstrap; module Cli; module Commands; end; end; end; end

require "bosh-bootstrap/cli/helpers"

# Runs SSH to the microbosh server
class Bosh::Bootstrap::Cli::Commands::Delete
  include Bosh::Bootstrap::Cli::Helpers

  def perform
    chdir(deployment_dir) do
      bundle "exec bosh -n micro deployment #{bosh_name}"
      bundle "exec bosh -n micro delete"
    end
  end

  protected
  def bosh_name
    settings.bosh.name
  end

  def deployment_dir
    File.join(settings_dir, "deployments")
  end
end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
bosh-bootstrap-0.14.5 lib/bosh-bootstrap/cli/commands/delete.rb
bosh-bootstrap-0.14.4 lib/bosh-bootstrap/cli/commands/delete.rb
bosh-bootstrap-0.14.3 lib/bosh-bootstrap/cli/commands/delete.rb
bosh-bootstrap-0.14.2 lib/bosh-bootstrap/cli/commands/delete.rb
bosh-bootstrap-0.14.1 lib/bosh-bootstrap/cli/commands/delete.rb
bosh-bootstrap-0.14.0 lib/bosh-bootstrap/cli/commands/delete.rb
bosh-bootstrap-0.13.2 lib/bosh-bootstrap/cli/commands/delete.rb
bosh-bootstrap-0.13.1 lib/bosh-bootstrap/cli/commands/delete.rb
bosh-bootstrap-0.13.0 lib/bosh-bootstrap/cli/commands/delete.rb
bosh-bootstrap-0.12.0 lib/bosh-bootstrap/cli/commands/delete.rb
bosh-bootstrap-0.11.15 lib/bosh-bootstrap/cli/commands/delete.rb
bosh-bootstrap-0.11.14 lib/bosh-bootstrap/cli/commands/delete.rb
bosh-bootstrap-0.11.13 lib/bosh-bootstrap/cli/commands/delete.rb
bosh-bootstrap-0.11.12 lib/bosh-bootstrap/cli/commands/delete.rb
bosh-bootstrap-0.11.11 lib/bosh-bootstrap/cli/commands/delete.rb
bosh-bootstrap-0.11.9 lib/bosh-bootstrap/cli/commands/delete.rb
bosh-bootstrap-0.11.8 lib/bosh-bootstrap/cli/commands/delete.rb
bosh-bootstrap-0.11.7 lib/bosh-bootstrap/cli/commands/delete.rb
bosh-bootstrap-0.11.6 lib/bosh-bootstrap/cli/commands/delete.rb
bosh-bootstrap-0.11.5 lib/bosh-bootstrap/cli/commands/delete.rb