source: LATMOS-Accounts/bin/la-sync @ 50

Last change on this file since 50 was 50, checked in by nanardon, 15 years ago
  • add L::A::create_synchro()
  • Property svn:keywords set to Id Rev
File size: 825 bytes
Line 
1#!/usr/bin/perl
2
3use strict;
4use warnings;
5use LATMOS::Accounts;
6use LATMOS::Accounts::Synchro;
7use Getopt::Long;
8use Pod::Usage;
9
10=head1 NAME
11
12    la-sync - Tools to synchronize base
13
14=head1 SYNOPSIS
15
16Show configured bases:
17
18    la-sync [options]
19
20=cut
21
22GetOptions(
23    'c|config=s' => \my $config,
24    'help'       => sub { pod2usage(0) },
25    'from=s'     => \my $from,
26    'to=s'       => \my @to,
27) or pod2usage();
28
29=head1 OPTIONS
30
31=item -c|--config configfile
32
33Use this configuration file instead default
34
35=item --from basename
36
37Specify souce base to use
38
39=item --to basename
40
41Specify destination base to use, this option can be used
42severals times
43
44=cut
45
46my $LA = LATMOS::Accounts->new($config);
47
48my $sync = $LA->create_synchro($from, [ @to ]);
49$sync->load_dest and return;
50$sync->process or warn "Sync has failed\n";
Note: See TracBrowser for help on using the repository browser.