This file is indexed.

/usr/share/doc/libconfig-model-perl/examples/fstab/lib/Config/Model/models/MyFstab/Ext3FsOpt.pl is in libconfig-model-perl 2.047-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
#
# This file is part of Config-Model
#
# This software is Copyright (c) 2013 by Dominique Dumont.
#
# This is free software, licensed under:
#
#   The GNU Lesser General Public License, Version 2.1, February 1999
#
[
          {
            'name' => 'MyFstab::Ext3FsOpt',
            'include' => [
                           'MyFstab::Ext2FsOpt'
                         ],
            'element' => [
                           'journalling_mode',
                           {
                             'value_type' => 'enum',
                             'help' => {
                                         'ordered' => 'This is the default mode. All data is forced directly out to the main file system prior to its metadata being committed to the journal.',
                                         'writeback' => 'Data ordering is not preserved - data may be writteninto the main file system after its metadata has been committed to the journal. This is rumoured to be the highest-throughput option. It guarantees internal file system integrity, however it can allow old data to appear in files after a crash and journal recovery.',
                                         'journal' => 'All data is committed into the journal prior to being written into the main file system. '
                                       },
                             'type' => 'leaf',
                             'description' => 'Specifies the journalling mode for file data. Metadata is always journaled. To use modes other than ordered on the root file system, pass the mode to the kernel as boot parameter, e.g. rootflags=data=journal.',
                             'choice' => [
                                           'journal',
                                           'ordered',
                                           'writeback'
                                         ]
                           }
                         ]
          }
        ]
;