blob: 961cc1ea608fd42e7d6c597f3e1530f0608fc1b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# $Id: Gendistrib.pm 115367 2007-01-30 09:47:04Z pixel $
package Youri::Submit::Post::Mirror;
=head1 NAME
Youri::Submit::Post::Mirror - synchronizes repository to mirror
=head1 DESCRIPTION
Calls genhdlist2
=cut
use warnings;
use strict;
use Carp;
use base qw/Youri::Submit::Post/;
sub _init {
my $self = shift;
my %options = (
destination => '',
@_
);
foreach my $var ('destination') {
$self->{"_$var"} = $options{$var};
}
}
sub run {
my ($self, $repository, $target, $define) = @_;
croak "Not a class method" unless ref $self;
my $root = $repository->get_install_root();
croak "Missing destination" unless $self->{'_destination'};
if (system("rsync -alH --delete $root/$target/ $self->{_destination}/$target/")) {
$self->{_error} = "Rsync command failed ($!)";
}
return;
}
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2010, Mageia
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
=cut
1;
|