line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# |
2
|
|
|
|
|
|
|
# (c) Zane C. Bowers-Hadley |
3
|
|
|
|
|
|
|
# |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
package Rex::Virtualization::CBSD::bpause; |
6
|
|
|
|
|
|
|
|
7
|
1
|
|
|
1
|
|
66675
|
use strict; |
|
1
|
|
|
|
|
8
|
|
|
1
|
|
|
|
|
30
|
|
8
|
1
|
|
|
1
|
|
5
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
63
|
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
our $VERSION = '0.0.1'; # VERSION |
11
|
|
|
|
|
|
|
|
12
|
1
|
|
|
1
|
|
423
|
use Rex::Logger; |
|
1
|
|
|
|
|
10431
|
|
|
1
|
|
|
|
|
38
|
|
13
|
1
|
|
|
1
|
|
403
|
use Rex::Helper::Run; |
|
1
|
|
|
|
|
75180
|
|
|
1
|
|
|
|
|
72
|
|
14
|
1
|
|
|
1
|
|
8
|
use Term::ANSIColor qw(colorstrip); |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
1034
|
|
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
sub execute { |
17
|
0
|
|
|
0
|
0
|
|
my ( $class, $name, $mode ) = @_; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
# make sure we have a jname to pass |
20
|
0
|
0
|
|
|
|
|
if ( !defined($name) ) { |
21
|
0
|
|
|
|
|
|
die('No VM name defined'); |
22
|
|
|
|
|
|
|
} |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
# set the mode to auto if none is set |
25
|
0
|
0
|
|
|
|
|
if ( !defined($mode) ) { |
26
|
0
|
|
|
|
|
|
$mode = 'auto'; |
27
|
|
|
|
|
|
|
} |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
# make sure mode is something valid |
30
|
0
|
0
|
0
|
|
|
|
if ( ( $mode eq 'auto' ) |
|
|
|
0
|
|
|
|
|
31
|
|
|
|
|
|
|
|| ( $mode eq 'on' ) |
32
|
|
|
|
|
|
|
|| ( $mode eq 'off' ) ) |
33
|
|
|
|
|
|
|
{ |
34
|
0
|
|
|
|
|
|
die "Mode specified is something other than 'auto', 'on', or 'off'."; |
35
|
|
|
|
|
|
|
} |
36
|
|
|
|
|
|
|
|
37
|
0
|
|
|
|
|
|
Rex::Logger::debug( "CBSD VM start via cbsd brebstart " . $name ); |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
# run it |
40
|
0
|
|
|
|
|
|
my $returned = i_run( 'cbsd bpause ' . $name . ' mode=' . $mode, fail_ok => 1 ); |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
# the output is colorized |
43
|
0
|
|
|
|
|
|
$returned = colorstrip($returned); |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
# check for failures caused by it not existing |
46
|
0
|
0
|
|
|
|
|
if ( $returned =~ /^No\ such/ ) { |
47
|
0
|
|
|
|
|
|
die( '"' . $name . '" does not exist' ); |
48
|
|
|
|
|
|
|
} |
49
|
0
|
0
|
|
|
|
|
if ( $? != 0 ) { |
50
|
0
|
|
|
|
|
|
die( "Error running 'cbsd brestart " . $name . "'" ); |
51
|
|
|
|
|
|
|
} |
52
|
|
|
|
|
|
|
|
53
|
0
|
|
|
|
|
|
return 1; |
54
|
|
|
|
|
|
|
} |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
1; |