Replace gruntmaster-* scripts with App::Cmd-based gm
[gruntmaster-data.git] / lib / Gruntmaster / App / Command / Rerun.pm
CommitLineData
92f74061
MG
1package Gruntmaster::App::Command::Rerun;
2
3use 5.014000;
4use warnings;
5
6our $VERSION = '5999.000_004';
7
8use Gruntmaster::App '-command';
9use Gruntmaster::Data;
10
11sub usage_desc { '%c rerun id' }
12
13sub 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
20sub execute {
21 my ($self, $opt, $args) = @_;
22 my ($obj) = @$args;
23 db->rerun_job($obj);
24}
25
261;
27__END__
This page took 0.011028 seconds and 4 git commands to generate.