Sha256: d5105b43855d318ea66469cecc96491d0f39402806fb9fd5c44ce4d8e647ff66

Contents?: true

Size: 684 Bytes

Versions: 3

Compression:

Stored size: 684 Bytes

Contents

module Nucleus
  # ExitCodes describe why the application failed and was stopped.
  #
  # Codes beginning with ___ stand for ___:
  #
  # 1xx => Startup failed
  #
  module ExitCodes
    ##########################
    ### Startup Exceptions ###
    ##########################

    # Unidentified startup error
    STARTUP_ERROR = 100

    # Custom SSH key was specified in the options but could not be loaded
    INVALID_SSH_KEY_FILE = 101

    # Invalid key, invalid or not of format ssh-rsa OpenSSH
    INVALID_SSH_KEY = 102

    # Invalid private key, we can only accept private keys without a passphrase
    INVALID_SSH_KEY_FILE_PROTECTED = 103
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
nucleus-0.3.1 lib/nucleus/core/common/exit_codes.rb
nucleus-0.2.0 lib/nucleus/core/common/exit_codes.rb
nucleus-0.1.0 lib/nucleus/core/common/exit_codes.rb