28 lines
732 B
Ruby
28 lines
732 B
Ruby
require "sshkit"
|
|
|
|
module Mrsk::Commands
|
|
class Base
|
|
attr_accessor :config
|
|
|
|
def initialize(config)
|
|
@config = config
|
|
end
|
|
|
|
private
|
|
def combine(*commands)
|
|
commands
|
|
.collect { |command| command + [ "&&" ] }.flatten # Join commands with &&
|
|
.tap { |commands| commands.pop } # Remove trailing &&
|
|
end
|
|
|
|
def docker(*args)
|
|
args.compact.unshift :docker
|
|
end
|
|
|
|
# Copied from SSHKit::Backend::Abstract#redact to be available inside Commands classes
|
|
def redact(arg) # Used in execute_command to hide redact() args a user passes in
|
|
arg.to_s.extend(SSHKit::Redaction) # to_s due to our inability to extend Integer, etc
|
|
end
|
|
end
|
|
end
|