Sha256: 85e600de20ead06b303e885567a53bcef7dc0b141f3676d7c51ef58f06a7e935

Contents?: true

Size: 748 Bytes

Versions: 11

Compression:

Stored size: 748 Bytes

Contents

# frozen_string_literal: true

module Takeltau
  # tau ship container check
  class ShipContainerCheck < SubCommandBase
    include LoggingModule
    include SystemModule
    include ConfigModule
    include DockerCheckDaemon
    include ShipContainerLib
    include ShipContainerCheckExisting

    #
    # ship container check existing
    #
    desc 'existing', 'Check if takelship is existing'
    long_desc <<-LONGDESC.gsub("\n", "\x5")
    Check if a takelship container is existing
    This check looks for a container with a given name.
    If such a container is existing the result is true else false.
    LONGDESC
    # Check if takelship container is existing.
    def existing
      exit ship_container_check_existing
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
takeltau-0.43.23 lib/takeltau/ship/container/check/cli.rb
takeltau-0.43.21 lib/takeltau/ship/container/check/cli.rb
takeltau-0.43.19 lib/takeltau/ship/container/check/cli.rb
takeltau-0.43.16 lib/takeltau/ship/container/check/cli.rb
takeltau-0.43.15 lib/takeltau/ship/container/check/cli.rb
takeltau-0.43.14 lib/takeltau/ship/container/check/cli.rb
takeltau-0.43.10 lib/takeltau/ship/container/check/cli.rb
takeltau-0.43.6 lib/takeltau/ship/container/check/cli.rb
takeltau-0.43.4 lib/takeltau/ship/container/check/cli.rb
takeltau-0.43.2 lib/takeltau/ship/container/check/cli.rb
takeltau-0.43.1 lib/takeltau/ship/container/check/cli.rb