Method: Mrsk::Configuration#ssh_user

Defined in:
lib/mrsk/configuration.rb

#ssh_userObject



111
112
113
114
115
116
117
# File 'lib/mrsk/configuration.rb', line 111

def ssh_user
  if raw_config.ssh.present?
    raw_config.ssh["user"] || "root"
  else
    "root"
  end
end