Class: Dopi::Command::Ssh::Reboot

Inherits:
WaitForLogin show all
Defined in:
lib/dopi/command/ssh/reboot.rb

Constant Summary

Constants inherited from WaitForLogin

WaitForLogin::DEFAULT_CONNECTION_TIMEOUT, WaitForLogin::DEFAULT_INTERVAL

Instance Attribute Summary

Attributes inherited from Dopi::Command

#hash, #is_verify_command, #node

Instance Method Summary collapse

Methods inherited from WaitForLogin

#connection_timeout, #interval, #ssh_options_defaults

Methods included from Dopi::CommandParser::ExitCode

#check_exit_code, #expect_exit_codes, #validate_exit_code

Methods included from Dopi::Connector::Ssh

#base64, #check_host_key, #port, #quiet, #ssh_command, #ssh_options, #supported_credential_types, #validate_ssh

Methods included from Dopi::CommandParser::Credentials

#credentials, #validate_credentials

Methods included from Dopi::Connector::Local

#local_command

Methods inherited from Dopi::Command

create_plugin_instance, delete_plugin_default, delete_plugin_defaults, inherited, #initialize, #load_state, #merged_hash, #meta_run, #meta_valid?, plugin_defaults, set_plugin_defaults, #state_hash, wipe_plugin_defaults

Methods included from State

#delete_on_signal, #on_signal, #reset_signals, #send_signal, #signal_procs, #signals, #state, #state_add_child, #state_auto_evaluate_children, #state_auto_evaluate_children=, #state_changed, #state_children, #state_children_done?, #state_children_failed?, #state_children_partial?, #state_children_ready?, #state_children_running?, #state_children_running_noop?, #state_children_starting?, #state_done?, #state_fail, #state_failed?, #state_finish, #state_partial?, #state_ready, #state_ready?, #state_reset, #state_reset_with_children, #state_run, #state_run_noop, #state_running?, #state_running_noop?, #state_start, #state_starting?, #to_yaml_properties, #update, #update_mutex

Constructor Details

This class inherits a constructor from Dopi::Command

Instance Method Details

#reboot_cmdObject



35
36
37
# File 'lib/dopi/command/ssh/reboot.rb', line 35

def reboot_cmd
  @reboot_cmd ||= reboot_cmd_valid? ? hash[:reboot_cmd] : 'shutdown -r now'
end

#runObject



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/dopi/command/ssh/reboot.rb', line 15

def run
  ssh_command({}, reboot_cmd)
  connected = true
  @connection_timeout = 1
  while connected
    begin connected = check_exit_code(ssh_command({}, 'exit')[2])
    rescue Dopi::NodeConnectionError, Dopi::CommandConnectionError
      connected = false
    end
    if connected
      sleep 1
      raise GracefulExit if signals[:stop]
      log(:info, "Still able to login, waiting for shutdown")
    end
  end
  log(:info, "Node is down, starting to check for login")
  @connection_timeout = nil
  super
end

#validateObject



10
11
12
13
# File 'lib/dopi/command/ssh/reboot.rb', line 10

def validate
  super
  log_validation_method(:reboot_cmd_valid?, CommandParsingError)
end