File Coverage

lib/Rex/Virtualization/LibVirt/shutdown.pm
Criterion Covered Total %
statement 11 23 47.8
branch 0 8 0.0
condition n/a
subroutine 4 5 80.0
pod 0 1 0.0
total 15 37 40.5


line stmt bran cond sub pod time code
1             #
2             # (c) Jan Gehring
3             #
4              
5             package Rex::Virtualization::LibVirt::shutdown;
6              
7 1     1   18 use v5.12.5;
  1         4  
8 1     1   5 use warnings;
  1         2  
  1         51  
9              
10             our $VERSION = '1.14.3'; # VERSION
11              
12 1     1   21 use Rex::Logger;
  1         5  
  1         8  
13 1     1   27 use Rex::Helper::Run;
  1         4  
  1         264  
14              
15             sub execute {
16 0     0 0   my ( $class, $arg1, %opt ) = @_;
17 0           my $virt_settings = Rex::Config->get("virtualization");
18             chomp( my $uri =
19 0 0         ref($virt_settings) ? $virt_settings->{connect} : i_run "virsh uri" );
20              
21 0 0         unless ($arg1) {
22 0           die("You have to define the vm name!");
23             }
24              
25 0           my $dom = $arg1;
26 0           Rex::Logger::debug("shutdown domain: $dom");
27              
28 0 0         unless ($dom) {
29 0           die("VM $dom not found.");
30             }
31              
32 0           i_run "virsh -c $uri shutdown '$dom'", fail_ok => 1;
33 0 0         if ( $? != 0 ) {
34 0           die("Error shutdown vm $dom");
35             }
36              
37             }
38              
39             1;