line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# |
2
|
|
|
|
|
|
|
# (c) Zane C. Bowers-Hadley |
3
|
|
|
|
|
|
|
# |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
package Rex::Virtualization::CBSD::bset; |
6
|
|
|
|
|
|
|
|
7
|
1
|
|
|
1
|
|
68892
|
use strict; |
|
1
|
|
|
|
|
11
|
|
|
1
|
|
|
|
|
30
|
|
8
|
1
|
|
|
1
|
|
5
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
38
|
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
our $VERSION = '0.0.1'; # VERSION |
11
|
|
|
|
|
|
|
|
12
|
1
|
|
|
1
|
|
474
|
use Rex::Logger; |
|
1
|
|
|
|
|
10921
|
|
|
1
|
|
|
|
|
38
|
|
13
|
1
|
|
|
1
|
|
417
|
use Rex::Helper::Run; |
|
1
|
|
|
|
|
76656
|
|
|
1
|
|
|
|
|
74
|
|
14
|
1
|
|
|
1
|
|
8
|
use Term::ANSIColor qw(colorstrip); |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
2031
|
|
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
sub execute { |
17
|
0
|
|
|
0
|
0
|
|
my ( $class, $name, %opts ) = @_; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
# make sure we have a |
20
|
0
|
0
|
|
|
|
|
if ( !defined($name) ) { |
21
|
0
|
|
|
|
|
|
die('No VM name defined'); |
22
|
|
|
|
|
|
|
} |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
# puts together the string of what to set etc |
25
|
0
|
|
|
|
|
|
my $to_set = ''; |
26
|
0
|
|
|
|
|
|
foreach my $key ( keys(%opts) ) { |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
# make sure it does not contain any spaces |
29
|
0
|
0
|
|
|
|
|
if ( $key =~ /[\t\ \=\\\/\'\"\n]/ ) { |
30
|
0
|
|
|
|
|
|
die 'The variable "' . $key . '" matched /[\t\ \=\/\\\'\"\n]/, meaning it is not a valid variable name'; |
31
|
|
|
|
|
|
|
} |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
# make sure we don't have any quotes |
34
|
0
|
0
|
|
|
|
|
if ( $opts{$key} =~ /[\'\"]/ ) { |
35
|
0
|
|
|
|
|
|
die "The value '" . $opts{$key} . "' for key '" . $key . "' contains a single or double quote"; |
36
|
|
|
|
|
|
|
} |
37
|
|
|
|
|
|
|
|
38
|
0
|
|
|
|
|
|
$to_set = $to_set . ' ' . $key . "='" . $opts{$key} . "'"; |
39
|
|
|
|
|
|
|
} |
40
|
|
|
|
|
|
|
|
41
|
0
|
|
|
|
|
|
my $command = 'cbsd bset jname=' . $name . $to_set; |
42
|
|
|
|
|
|
|
|
43
|
0
|
|
|
|
|
|
Rex::Logger::debug( "Setting config value for a CBSD VM via... " . $command ); |
44
|
|
|
|
|
|
|
|
45
|
0
|
|
|
|
|
|
my $returned = i_run( $command, fail_ok => 1 ); |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
# the output is colorized |
48
|
0
|
|
|
|
|
|
$returned = colorstrip($returned); |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
# test after no such as that will also exit non-zero |
51
|
0
|
0
|
|
|
|
|
if ( $? != 0 ) { |
52
|
0
|
|
|
|
|
|
die( "Error running '" . $command . "' returned... " . $returned ); |
53
|
|
|
|
|
|
|
} |
54
|
|
|
|
|
|
|
|
55
|
0
|
|
|
|
|
|
return 1; |
56
|
|
|
|
|
|
|
} |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
1; |