Replace gruntmaster-* scripts with App::Cmd-based gm
[gruntmaster-data.git] / lib / Gruntmaster / App / Command / Rerun.pm
1 package Gruntmaster::App::Command::Rerun;
2
3 use 5.014000;
4 use warnings;
5
6 our $VERSION = '5999.000_004';
7
8 use Gruntmaster::App '-command';
9 use Gruntmaster::Data;
10
11 sub usage_desc { '%c rerun id' }
12
13 sub validate_args {
14 my ($self, $opt, $args) = @_;
15 my @args = @$args;
16 $self->usage_error('This command only works on jobs') if $self->app->table && $self->app->table ne 'jobs';
17 $self->usage_error('Wrong number of arguments') if @args != 1;
18 }
19
20 sub execute {
21 my ($self, $opt, $args) = @_;
22 my ($obj) = @$args;
23 db->rerun_job($obj);
24 }
25
26 1;
27 __END__
This page took 0.02341 seconds and 5 git commands to generate.