File Coverage

blib/lib/Metabrik/System/Debian/Service.pm
Criterion Covered Total %
statement 9 10 90.0
branch n/a
condition n/a
subroutine 3 4 75.0
pod 1 1 100.0
total 13 15 86.6


line stmt bran cond sub pod time code
1             #
2             # $Id$
3             #
4             # system::debian::service Brik
5             #
6             package Metabrik::System::Debian::Service;
7 1     1   810 use strict;
  1         3  
  1         30  
8 1     1   5 use warnings;
  1         2  
  1         25  
9              
10 1     1   5 use base qw(Metabrik::System::Ubuntu::Service);
  1         2  
  1         156  
11              
12             sub brik_properties {
13             return {
14 0     0 1   revision => '$Revision$',
15             tags => [ qw(unstable) ],
16             author => 'GomoR ',
17             license => 'http://opensource.org/licenses/BSD-3-Clause',
18             attributes => {
19             },
20             attributes_default => {
21             },
22             commands => {
23             enable => [ qw(service_name) ],
24             disable => [ qw(service_name) ],
25             },
26             require_binaries => {
27             'update-rc.d' => [ ],
28             },
29             #need_packages => {
30             #ubuntu => [ qw() ],
31             #debian => [ qw() ],
32             #kali => [ qw() ],
33             #},
34             };
35             }
36              
37             1;
38              
39             __END__