aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Terjan <pterjan@mageia.org>2012-03-05 20:29:54 +0000
committerPascal Terjan <pterjan@mageia.org>2012-03-05 20:29:54 +0000
commit308318092d308b42c60dd7c40ffd6d439c0a669b (patch)
treef0ffe4bf3a2010fc933bf2876dbcf959c9f01044
parent5780db6be31752c60fb95cdda848182f074308ab (diff)
downloadmga-youri-submit-308318092d308b42c60dd7c40ffd6d439c0a669b.tar
mga-youri-submit-308318092d308b42c60dd7c40ffd6d439c0a669b.tar.gz
mga-youri-submit-308318092d308b42c60dd7c40ffd6d439c0a669b.tar.bz2
mga-youri-submit-308318092d308b42c60dd7c40ffd6d439c0a669b.tar.xz
mga-youri-submit-308318092d308b42c60dd7c40ffd6d439c0a669b.zip
Add a Youri::Submit::Action to run ulri
-rw-r--r--lib/Youri/Submit/Action/Ulri.pm53
1 files changed, 53 insertions, 0 deletions
diff --git a/lib/Youri/Submit/Action/Ulri.pm b/lib/Youri/Submit/Action/Ulri.pm
new file mode 100644
index 0000000..221676a
--- /dev/null
+++ b/lib/Youri/Submit/Action/Ulri.pm
@@ -0,0 +1,53 @@
+# $Id$
+package Youri::Submit::Action::Ulri;
+
+=head1 NAME
+
+Youri::Submit::Action::Ulri - Runs ulri on the upload host
+
+=head1 DESCRIPTION
+
+This action plugin runs ulri to try starting a build
+
+=cut
+
+use warnings;
+use strict;
+use Carp;
+use base qw/Youri::Submit::Action/;
+
+sub _init {
+ my $self = shift;
+ my %options = (
+ uphost => '',
+ user => '',
+ ssh_key => '',
+ verbose => '',
+ @_
+ );
+ croak "undefined upload host" unless $options{uphost};
+ croak "undefined ssh key" unless $options{ssh_key};
+
+ foreach my $var ('user', 'uphost', 'ssh_key', 'verbose') {
+ $self->{"_$var"} = $options{$var};
+ }
+
+ return $self;
+}
+
+sub run {
+ my ($self, $package, $repository, $target, $define) = @_;
+ croak "Not a class method" unless ref $self;
+
+ my $cmd = "ssh -i $self->{_ssh_key} $self->{_user}\@$self->{_uphost} ulri";
+ print "Submit::Action::Ulri: doing $cmd\n" if $self->{_verbose};
+}
+=head1 COPYRIGHT AND LICENSE
+
+Copyright (C) 2002-2012, YOURI project
+
+This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
+
+=cut
+
+1;