Class: Puppet::SSL::StateMachine::Wait Private

Inherits:
SSLState show all
Defined in:
lib/puppet/ssl/state_machine.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

We cannot make progress, so wait if allowed to do so, or exit.

Instance Attribute Summary

Attributes inherited from SSLState

#ssl_context

Instance Method Summary collapse

Methods inherited from SSLState

#log_error, #to_error

Constructor Details

#initialize(machine) ⇒ Wait

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of Wait.



402
403
404
# File 'lib/puppet/ssl/state_machine.rb', line 402

def initialize(machine)
  super(machine, nil)
end

Instance Method Details

#next_stateObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
# File 'lib/puppet/ssl/state_machine.rb', line 406

def next_state
  time = @machine.waitforcert
  if time < 1
    log_error(_("Exiting now because the waitforcert setting is set to 0."))
    exit(1)
  elsif Time.now.to_i > @machine.wait_deadline
    log_error(_("Couldn't fetch certificate from CA server; you might still need to sign this agent's certificate (%{name}). Exiting now because the maxwaitforcert timeout has been exceeded.") % { name: Puppet[:certname] })
    exit(1)
  else
    Puppet.info(_("Will try again in %{time} seconds.") % { time: time })

    # close http/tls and session state before sleeping
    Puppet.runtime[:http].close
    @machine.session = Puppet.runtime[:http].create_session

    @machine.unlock
    Kernel.sleep(time)
    NeedLock.new(@machine)
  end
end