class Mac::Host

Attributes

external_copy_base[R]

Public Class Methods

new(name, host_hash, options) click to toggle source
Calls superclass method Unix::Host::new
# File lib/beaker/host/mac.rb, line 27
def initialize name, host_hash, options
  super

  @external_copy_base = '/var/root'
end

Public Instance Methods

platform_defaults() click to toggle source
# File lib/beaker/host/mac.rb, line 16
def platform_defaults
  h = Beaker::Options::OptionsHash.new
  h.merge({
            'user' => 'root',
            'group' => 'root',
            'pathseparator' => ':',
          })
end