Class: Bolt::Transport::Jail
- Defined in:
- lib/bolt/transport/jail.rb,
lib/bolt/transport/jail/connection.rb
Defined Under Namespace
Classes: Connection
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
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, #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
#provided_features ⇒ Object
8 9 10 |
# File 'lib/bolt/transport/jail.rb', line 8 def provided_features ['shell'] end |
#with_connection(target) {|conn| ... } ⇒ Object
12 13 14 15 16 |
# File 'lib/bolt/transport/jail.rb', line 12 def with_connection(target) conn = Connection.new(target) conn.connect yield conn end |