Config.pm 247 B

123456789101112131415
  1. # -*- perl -*-
  2. # vim:ft=perl foldlevel=1
  3. package File::Rsync::Config;
  4. require Exporter;
  5. use vars qw(@ISA @EXPORT %RsyncConfig);
  6. use strict;
  7. @EXPORT=qw(%RsyncConfig);
  8. @ISA=qw(Exporter);
  9. %RsyncConfig=(
  10. rsync_path => '/usr/bin/rsync',
  11. );
  12. 1;