| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
# |
|
2
|
|
|
|
|
|
|
# This file is part of Config-Model-OpenSsh |
|
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
|
2
|
|
|
2
|
|
233153
|
use strict; |
|
|
2
|
|
|
|
|
9
|
|
|
|
2
|
|
|
|
|
73
|
|
|
11
|
2
|
|
|
2
|
|
10
|
use warnings; |
|
|
2
|
|
|
|
|
6
|
|
|
|
2
|
|
|
|
|
175
|
|
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
return [ |
|
14
|
|
|
|
|
|
|
{ |
|
15
|
|
|
|
|
|
|
'author' => [ |
|
16
|
|
|
|
|
|
|
'Dominique Dumont' |
|
17
|
|
|
|
|
|
|
], |
|
18
|
|
|
|
|
|
|
'class_description' => 'Configuration class used by L<Config::Model> to edit or |
|
19
|
|
|
|
|
|
|
validate /etc/ssh/ssh_config (as root) |
|
20
|
|
|
|
|
|
|
', |
|
21
|
|
|
|
|
|
|
'copyright' => [ |
|
22
|
|
|
|
|
|
|
'2013 Dominique Dumont' |
|
23
|
|
|
|
|
|
|
], |
|
24
|
|
|
|
|
|
|
'include' => [ |
|
25
|
|
|
|
|
|
|
'Ssh' |
|
26
|
|
|
|
|
|
|
], |
|
27
|
|
|
|
|
|
|
'license' => 'LGPL2', |
|
28
|
|
|
|
|
|
|
'name' => 'SystemSsh', |
|
29
|
|
|
|
|
|
|
'rw_config' => { |
|
30
|
|
|
|
|
|
|
'backend' => 'OpenSsh::Ssh', |
|
31
|
|
|
|
|
|
|
'config_dir' => '/etc/ssh', |
|
32
|
|
|
|
|
|
|
'file' => 'ssh_config', |
|
33
|
|
|
|
|
|
|
'os_config_dir' => { |
|
34
|
|
|
|
|
|
|
'darwin' => '/etc' |
|
35
|
|
|
|
|
|
|
} |
|
36
|
|
|
|
|
|
|
} |
|
37
|
|
|
|
|
|
|
} |
|
38
|
|
|
|
|
|
|
] |
|
39
|
|
|
|
|
|
|
; |
|
40
|
|
|
|
|
|
|
|