File Coverage

blib/lib/Config/Model/models/Systemd/Service.pl
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             #
2             # This file is part of Config-Model-Systemd
3             #
4             # This software is Copyright (c) 2008-2022 by Dominique Dumont.
5             #
6             # This is free software, licensed under:
7             #
8             # The GNU Lesser General Public License, Version 2.1, February 1999
9             #
10 4     4   184659 use strict;
  4     1   12  
  4         147  
  1         2593  
  1         6  
  1         29  
11 4     4   25 use warnings;
  4     1   11  
  4         628  
  1         6  
  1         3  
  1         158  
12              
13             return [
14             {
15             'accept' => [
16             '.*',
17             {
18             'type' => 'leaf',
19             'value_type' => 'uniline',
20             'warn' => 'Unexpected systemd parameter. Please contact cme author to update systemd model.'
21             }
22             ],
23             'element' => [
24             'disable',
25             {
26             'description' => 'When true, cme will disable a configuration file supplied by the vendor by placing place a symlink to /dev/null with the same filename as the vendor configuration file. See L<systemd-system.conf> for details.',
27             'summary' => 'disable configuration file supplied by the vendor',
28             'type' => 'leaf',
29             'upstream_default' => '0',
30             'value_type' => 'boolean'
31             },
32             'Service',
33             {
34             'config_class_name' => 'Systemd::Section::Service',
35             'type' => 'warped_node',
36             'warp' => {
37             'follow' => {
38             'disable' => '- disable'
39             },
40             'rules' => [
41             '$disable',
42             {
43             'level' => 'hidden'
44             }
45             ]
46             }
47             },
48             'Unit',
49             {
50             'config_class_name' => 'Systemd::Section::ServiceUnit',
51             'type' => 'warped_node',
52             'warp' => {
53             'follow' => {
54             'disable' => '- disable'
55             },
56             'rules' => [
57             '$disable',
58             {
59             'level' => 'hidden'
60             }
61             ]
62             }
63             },
64             'Install',
65             {
66             'config_class_name' => 'Systemd::Section::Install',
67             'type' => 'warped_node',
68             'warp' => {
69             'follow' => {
70             'disable' => '- disable'
71             },
72             'rules' => [
73             '$disable',
74             {
75             'level' => 'hidden'
76             }
77             ]
78             }
79             }
80             ],
81             'generated_by' => 'parse-man.pl from systemd doc',
82             'name' => 'Systemd::Service',
83             'rw_config' => {
84             'auto_create' => '1',
85             'auto_delete' => '1',
86             'backend' => 'Systemd::Unit',
87             'file' => '&index.service'
88             }
89             }
90             ]
91             ;
92