File Coverage

blib/lib/Rex/Virtualization/CBSD/p9shares_add.pm
Criterion Covered Total %
statement 15 30 50.0
branch 0 8 0.0
condition 0 3 0.0
subroutine 5 6 83.3
pod 0 1 0.0
total 20 48 41.6


line stmt bran cond sub pod time code
1             #
2             # (c) Zane C. Bowers-Hadley
3             #
4              
5             package Rex::Virtualization::CBSD::p9shares_add;
6              
7 1     1   69206 use strict;
  1         13  
  1         30  
8 1     1   5 use warnings;
  1         2  
  1         53  
9              
10             our $VERSION = '0.0.1'; # VERSION
11              
12 1     1   470 use Rex::Logger;
  1         11112  
  1         39  
13 1     1   435 use Rex::Helper::Run;
  1         78416  
  1         88  
14 1     1   8 use Term::ANSIColor qw(colorstrip);
  1         2  
  1         2096  
15              
16             sub execute {
17 0     0 0   my ( $class, %opts ) = @_;
18              
19             # make sure all the keys are sane
20 0           my @required_keys = ( 'vm', 'device', 'path' );
21 0           foreach my $key (@required_keys) {
22              
23 0 0         if ( !defined( $opts{$key} ) ) {
24 0           die 'The required variable "' . $key . '" is not set';
25             }
26              
27             # make sure it does not contain any possible characters we don't want
28 0 0 0       if ( ( $key ne 'path' )
    0          
29             && ( $opts{$key} =~ /[\t\ \=\\\/\'\"\n\;\&]/ ) )
30             {
31             die 'The value for "'
32             . $key . '", "'
33 0           . $opts{$key}
34             . '", matched /[\t\ \=\/\\\'\"\n\;\&]/, meaning it is not a valid value';
35             }
36             elsif ( $opts{$key} =~ /[\t\'\"\n\;\&]/ ) {
37             die 'The value for "'
38             . $key . '", "'
39 0           . $opts{$key}
40             . '", matched /[\t\'\"\n\;\&]/, meaning it is not a valid value';
41             }
42             }
43              
44             # put together the command
45             my $command
46             = 'cbsd bhyve-p9shares mode=attach jname='
47             . $opts{vm}
48             . ' device='
49             . $opts{device}
50             . " path='"
51 0           . $opts{path} . "'";
52              
53 0           Rex::Logger::debug( "Adding CBSD p9share via... " . $command );
54              
55 0           my $returned = i_run( $command, fail_ok => 1 );
56              
57             # the output is colorized, if there is an error
58 0           $returned = colorstrip($returned);
59              
60             # check for this second as no VM will also exit non-zero
61 0 0         if ( $? != 0 ) {
62 0           die( "Error running '" . $command . "'" );
63             }
64              
65 0           return 1;
66             }
67              
68             1;