Added lots more modules from lintian. Maemian appears to work.
[maemian] / checks / conffiles
1 # conffiles -- lintian check script -*- perl -*-
2
3 # Copyright (C) 1998 Christian Schwarz
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, you can find it on the World Wide
17 # Web at http://www.gnu.org/copyleft/gpl.html, or write to the Free
18 # Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
19 # MA 02110-1301, USA.
20
21 package Maemian::conffiles;
22 use strict;
23 use Tags;
24 use Util;
25
26 sub run {
27
28 my $pkg = shift;
29 my $type = shift;
30
31 my $cf = "control/conffiles";
32
33 # conffiles?
34 unless (-f $cf) {
35     return 0;
36 }
37
38 my %conffiles = ();
39
40 open(IN, '<', $cf) or fail("cannot open $cf for reading: $!");
41 while (<IN>) {
42     chop;
43     next if m/^\s*$/;
44
45     unless (m,^/,) {
46         tag "relative-conffile", $_;
47         $_ = '/' . $_;
48     }
49
50     $conffiles{$_}++;
51
52     if ($conffiles{$_} > 1) {
53         tag "duplicate-conffile", $_;
54     }
55
56     if (m,^/usr/,) {
57         tag "file-in-usr-marked-as-conffile", $_;
58     } else {
59         unless (m,^/etc/,) {
60             tag "non-etc-file-marked-as-conffile", $_;
61         }
62     }
63
64 }
65 close(IN);
66
67 }
68
69 1;