package rsyncconfigwithscp;
use warnings;
use strict;

sub getarg {
  my ($class, $self) = @_;

  my $cache = -e '.orion.installed.modules' ? '.orion.installed.modules' : 't/.orion.installed.modules';
  return (
    host => 'orion:',
    prefix => '/tmp/perl5lib/',
    command => 'scp',
    ppmdf => $cache,
  );
}

1;
