class Envirobly::ContainerShell

def rsync(source, destination)

def rsync(source, destination)
  with_private_key do
    system join(
      env_vars,
      %(rsync #{options.args} -e "#{ssh}"),
      source.sub("#{service_name}:", "#{user_and_host}:"),
      destination.sub("#{service_name}:", "#{user_and_host}:")
    )
  end
end