line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Devel::AssertOS::Linux::RealDebian; |
2
|
|
|
|
|
|
|
|
3
|
4
|
|
|
4
|
|
37
|
use Devel::CheckOS; |
|
4
|
|
|
|
|
16
|
|
|
4
|
|
|
|
|
306
|
|
4
|
4
|
|
|
4
|
|
25
|
use strict; |
|
4
|
|
|
|
|
10
|
|
|
4
|
|
|
|
|
139
|
|
5
|
4
|
|
|
4
|
|
28
|
use warnings; |
|
4
|
|
|
|
|
8
|
|
|
4
|
|
|
|
|
240
|
|
6
|
4
|
|
|
4
|
|
364
|
no warnings 'redefine'; |
|
4
|
|
|
|
|
8
|
|
|
4
|
|
|
|
|
665
|
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
our $VERSION = '1.0'; |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
sub os_is { |
11
|
4
|
50
|
|
4
|
|
29
|
Devel::CheckOS::os_is('Linux') && |
12
|
|
|
|
|
|
|
`lsb_release -i 2>/dev/null` =~ /Debian/ |
13
|
|
|
|
|
|
|
} |
14
|
|
|
|
|
|
|
|
15
|
0
|
|
|
0
|
|
|
sub expn { "The operating system is real Debian, recent enough to have \`lsb_release\`, and not some Debian derivative" } |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Devel::CheckOS::die_unsupported() unless(os_is()); |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 COPYRIGHT and LICENCE |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Copyright 2007 - 2020 David Cantrell |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
This software is free-as-in-speech software, and may be used, distributed, and modified under the terms of either the GNU General Public Licence version 2 or the Artistic Licence. It's up to you which one you use. The full text of the licences can be found in the files GPL2.txt and ARTISTIC.txt, respectively. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=cut |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
1; |
28
|
|
|
|
|
|
|
|