aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorPascal Terjan <pterjan@mageia.org>2011-02-14 20:42:47 +0000
committerPascal Terjan <pterjan@mageia.org>2011-02-14 20:42:47 +0000
commit71ae16047f87cfa6b065f5e1a7c72b3f8bfd7e23 (patch)
tree9a150cac610ea95bd65c072c4544cf993b011deb /lib
parent106a77fcd243501b4f4eb435fa5453953df79dd1 (diff)
downloadmga-youri-submit-71ae16047f87cfa6b065f5e1a7c72b3f8bfd7e23.tar
mga-youri-submit-71ae16047f87cfa6b065f5e1a7c72b3f8bfd7e23.tar.gz
mga-youri-submit-71ae16047f87cfa6b065f5e1a7c72b3f8bfd7e23.tar.bz2
mga-youri-submit-71ae16047f87cfa6b065f5e1a7c72b3f8bfd7e23.tar.xz
mga-youri-submit-71ae16047f87cfa6b065f5e1a7c72b3f8bfd7e23.zip
Add a mirror action
Diffstat (limited to 'lib')
-rw-r--r--lib/Youri/Submit/Post/Mirror.pm55
1 files changed, 55 insertions, 0 deletions
diff --git a/lib/Youri/Submit/Post/Mirror.pm b/lib/Youri/Submit/Post/Mirror.pm
new file mode 100644
index 0000000..387fe90
--- /dev/null
+++ b/lib/Youri/Submit/Post/Mirror.pm
@@ -0,0 +1,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 $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;
+