Added some code to peer into a data structure in Maemian/Schedule.pm. Also added the
[maemian] / nokia-lintian / 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 Lintian::etcfiles;
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 %conffiles;
32
33 my $conffiles = "control/conffiles";
34
35 # load conffiles
36 if (open(IN, '<', $conffiles)) {
37     while (<IN>) {
38         chop;
39         next if m/^\s*$/o;
40         s,^/,,;
41         $conffiles{$_} = 1;
42     }
43     close(IN);
44 }
45
46 # Read package contents...
47 open(IN, '<', "index") or fail("cannot open index file index: $!");
48 while (<IN>) {
49     chop;
50
51     my ($perm,$owner,$size,$date,$time,$file) = split(' ', $_, 6);
52     my $link;
53
54     $file =~ s,^(\./),,;
55     $file =~ s/ link to .*//;
56
57     if ($perm =~ m/^l/) {
58         ($file, $link) = split(' -> ', $file);
59     }
60
61     # skip it unless it is a file in /etc
62     next unless $file =~ m,^etc, and $perm =~ m,^-,;
63
64     # If there is a /etc/foo, it must be a conffile (with a few exceptions).
65     if (not exists($conffiles{$file})
66         and $file !~ m,/README$,
67         and $file ne 'etc/init.d/skeleton'
68         and $file ne 'etc/init.d/rc'
69         and $file ne 'etc/init.d/rcS') {
70         tag "file-in-etc-not-marked-as-conffile", "/$file";
71     }
72 }
73 close(IN);
74
75 }
76
77 1;