class Runbook::Statements::CaptureAll

Attributes

cmd[R]
into[R]
raw[R]
ssh_config[R]
strip[R]

Public Class Methods

new(cmd, into:, ssh_config: nil, raw: false, strip: true) click to toggle source
# File lib/runbook/statements/capture_all.rb, line 5
def initialize(cmd, into:, ssh_config: nil, raw: false, strip: true)
  @cmd = cmd
  @into = into
  @ssh_config = ssh_config
  @raw = raw
  @strip = strip
end