Class: Bolt::Transport::Podman

Inherits:
Docker show all
Defined in:
lib/bolt/transport/podman.rb,
lib/bolt/transport/podman/connection.rb

Defined Under Namespace

Classes: Connection

Instance Attribute Summary

Attributes inherited from Base

#logger

Instance Method Summary collapse

Methods inherited from Docker

#provided_features

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, #initialize, #provided_features, #run_command, #run_script, #run_task, #select_implementation, #select_interpreter, #unwrap_sensitive_args, #upload, #with_events

Constructor Details

This class inherits a constructor from Bolt::Transport::Base

Instance Method Details

#with_connection(target) {|conn| ... } ⇒ Object

Yields:

  • (conn)


10
11
12
13
14
# File 'lib/bolt/transport/podman.rb', line 10

def with_connection(target)
  conn = Connection.new(target)
  conn.connect
  yield conn
end