This file is indexed.

/usr/lib/python2.7/dist-packages/ocfs2interface/fstab.py is in ocfs2console 1.6.4-3.1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# OCFS2Console - GUI frontend for OCFS2 management and debugging
# Copyright (C) 2005 Oracle.  All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 021110-1307, USA.

PATH_FSTAB = '/etc/fstab'

class FSTab:
    def __init__(self):
        self.refresh()

    def refresh(self):
        self.entries = []

        try:
            fstab_file = open(PATH_FSTAB)
            lines = fstab_file.readlines()
            fstab_file.close()
        except IOError:
            return

        for line in lines:
            line = line.strip()

            if line.startswith('#'):
                continue

            try:
                entry = FSTabEntry(*line.split())
            except (ValueError, TypeError):
                continue

            self.entries.append(entry)

    def get(self, device=None, label=None, uuid=None):
        valid_specs = {}

        if device:
            valid_specs[device] = True

        if label:
            spec = 'LABEL=' + label
            valid_specs[spec] = True

        if uuid:
            spec = 'UUID=' + uuid.lower()
            valid_specs[spec] = True

        for entry in self.entries:
            if entry.spec in valid_specs:
                return entry

        return None

class FSTabEntry:
    def __init__(self, spec, mountpoint, vfstype, options, freq=0, passno=0):
        symtab = locals()

        code = self.__init__.func_code

        names = []
        for attr in code.co_varnames[1:code.co_argcount]:
            setattr(self, attr, symtab[attr])
            names.append(attr)

        self.entry_fmt = '\t'.join(['%%(%s)s' % f for f in names])

        if self.spec.startswith('UUID='):
            self.spec = 'UUID=' + self.spec[5:].lower()

    def __str__(self):
        return self.entry_fmt % self.__dict__

    def __repr__(self):
        return "<FSTabEntry: '%s'>" % str(self)

def main():
    import sys
    spec = sys.argv[1]

    fstab = FSTab()
    print fstab.get(device=spec, label=spec, uuid=spec)

if __name__ == '__main__':
    main()