Sha256: 94984a566dbc19b389da143d97dd5d5a67a13159abaf638601143df99852eae7

Contents?: true

Size: 1.2 KB

Versions: 18

Compression:

Stored size: 1.2 KB

Contents

require 'r10k/logging'

module R10K
  module Action
    module Deploy
      module DeployHelpers

        include R10K::Logging

        # Ensure that a config file has been found (and presumably loaded) and exit
        # with a helpful error if it hasn't.
        #
        # @raise [SystemExit] If no config file was loaded
        def expect_config!
          if @config.nil?
            logger.fatal(_("No configuration file given, no config file found in current directory, and no global config present"))
            exit(8)
          end
        end

        # Check to see if the deploy write_lock setting has been set, and log the lock message
        # and exit if it has been set.
        #
        # @param config [Hash] The r10k config hash
        #
        # @raise [SystemExit] if the deploy write_lock setting has been set
        def check_write_lock!(config)
          write_lock = config.fetch(:deploy, {})[:write_lock]
          if write_lock
            logger.fatal(_("Making changes to deployed environments has been administratively disabled."))
            logger.fatal(_("Reason: %{write_lock}") % {write_lock: write_lock})
            exit(16)
          end
        end
      end
    end
  end
end

Version data entries

18 entries across 18 versions & 2 rubygems

Version Path
r10k-5.0.0 lib/r10k/action/deploy/deploy_helpers.rb
r10k-4.1.0 lib/r10k/action/deploy/deploy_helpers.rb
r10k-4.0.2 lib/r10k/action/deploy/deploy_helpers.rb
r10k-4.0.1 lib/r10k/action/deploy/deploy_helpers.rb
r10k-4.0.0 lib/r10k/action/deploy/deploy_helpers.rb
r10k-4.0.0.pre lib/r10k/action/deploy/deploy_helpers.rb
r10k-3.16.0 lib/r10k/action/deploy/deploy_helpers.rb
r10k-3.15.4 lib/r10k/action/deploy/deploy_helpers.rb
r10k-3.15.3 lib/r10k/action/deploy/deploy_helpers.rb
r10k-3.15.2 lib/r10k/action/deploy/deploy_helpers.rb
r10k-3.15.1 lib/r10k/action/deploy/deploy_helpers.rb
r10k-3.15.0 lib/r10k/action/deploy/deploy_helpers.rb
akerl-r10k-3.14.2.1 lib/r10k/action/deploy/deploy_helpers.rb
r10k-3.14.2 lib/r10k/action/deploy/deploy_helpers.rb
r10k-3.14.1 lib/r10k/action/deploy/deploy_helpers.rb
r10k-3.14.0 lib/r10k/action/deploy/deploy_helpers.rb
r10k-3.13.0 lib/r10k/action/deploy/deploy_helpers.rb
r10k-3.12.1 lib/r10k/action/deploy/deploy_helpers.rb