Added lots more modules from lintian. Maemian appears to work.
[maemian] / checks / etcfiles
1 # etcfiles -- lintian check script -*- perl -*-
2
3 # Copyright (C) 2000 by Sean 'Shaleh' Perry
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::etcfiles;
22 use strict;
23 use Tags;
24 use Util;
25
26 sub run {
27
28 my $pkg = shift;
29 my $type = shift;
30 my $info = shift;
31
32 my %conffiles;
33
34 my $conffiles = "control/conffiles";
35
36 # load conffiles
37 if (open(IN, '<', $conffiles)) {
38     while (<IN>) {
39         chop;
40         next if m/^\s*$/o;
41         s,^/,,;
42         $conffiles{$_} = 1;
43     }
44     close(IN);
45 }
46
47 # Read package contents...
48 foreach my $file (sort keys %{$info->index}) {
49     my $index_info = $info->index->{$file};
50     next unless $file =~ m,^etc, and $index_info->{type}=~ m/^[-h]/;
51
52     # If there is a /etc/foo, it must be a conffile (with a few exceptions).
53     if (not exists($conffiles{$file})
54         and $file !~ m,/README$,
55         and $file ne 'etc/init.d/skeleton'
56         and $file ne 'etc/init.d/rc'
57         and $file ne 'etc/init.d/rcS') {
58         tag "file-in-etc-not-marked-as-conffile", "/$file";
59     }
60 }
61
62 }
63
64 1;