Class: Bolt::Transport::WinRM
- Defined in:
- lib/bolt/transport/winrm.rb,
lib/bolt/transport/winrm/connection.rb
Defined Under Namespace
Classes: Connection
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
-
#initialize ⇒ WinRM
constructor
A new instance of WinRM.
- #with_connection(target) ⇒ Object
Methods inherited from Simple
#connected?, #download, #run_command, #run_script, #run_task, #upload
Methods inherited from Base
#assert_batch_size_one, #batch_command, #batch_connected?, #batch_download, #batch_script, #batch_task, #batch_task_with, #batch_upload, #batches, #connected?, #default_input_method, #download, #provided_features, #run_command, #run_script, #run_task, #select_implementation, #select_interpreter, #unwrap_sensitive_args, #upload, #with_events
Constructor Details
Instance Method Details
#with_connection(target) ⇒ Object
18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/bolt/transport/winrm.rb', line 18 def with_connection(target) conn = Connection.new(target, @transport_logger) conn.connect yield conn ensure begin conn&.disconnect rescue StandardError => e logger.info("Failed to close connection to #{target.safe_name} : #{e.}") end end |