File Coverage

blib/lib/Rex/Virtualization/CBSD/bcheckpoint_destroyall.pm
Criterion Covered Total %
statement 15 27 55.5
branch 0 6 0.0
condition n/a
subroutine 5 6 83.3
pod 0 1 0.0
total 20 40 50.0


line stmt bran cond sub pod time code
1             #
2             # (c) Zane C. Bowers-Hadley
3             #
4              
5             package Rex::Virtualization::CBSD::bcheckpoint_destroyall;
6              
7 1     1   73166 use strict;
  1         14  
  1         32  
8 1     1   5 use warnings;
  1         2  
  1         106  
9              
10             our $VERSION = '0.0.1'; # VERSION
11              
12 1     1   500 use Rex::Logger;
  1         11232  
  1         70  
13 1     1   672 use Rex::Helper::Run;
  1         83026  
  1         74  
14 1     1   14 use Term::ANSIColor qw(colorstrip);
  1         2  
  1         2761  
15              
16             sub execute {
17 0     0 0   my ( $class, %opts ) = @_;
18              
19 0 0         if ( !defined( $opts{vm} ) ) {
20 0           die 'The required variable "vm" is not set';
21             }
22              
23             # make sure all the keys are sane
24 0 0         if ( $opts{vm} =~ /[\t\ \=\\\/\'\"\n\;\&]/ )
25             {
26             die 'The value either for "vm", "'
27             . $opts{vm}
28 0           . '", matched /[\t\ \=\/\\\'\"\n\;\&]/, meaning it is not a valid value';
29             }
30              
31             # put together the command
32             my $command
33 0           = 'cbsd bcheckpoint mode=destroyall jname=' . $opts{vm};
34              
35 0           Rex::Logger::debug( "Removing all checkpoints for a CBSD VM via... " . $command );
36              
37 0           my $returned = i_run( $command, fail_ok => 1 );
38              
39             # the output is colorized, if there is an error
40 0           $returned = colorstrip($returned);
41              
42             # check for this second as no VM will also exit non-zero
43 0 0         if ( $? != 0 ) {
44 0           die( "Error running '" . $command . "'" );
45             }
46              
47 0           return 1;
48             }
49              
50             1;