This file is indexed.

/usr/share/perl5/Config/Model/models/Fstab/CommonOptions.pl is in libconfig-model-perl 2.097-2.

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
#
# This file is part of Config-Model
#
# This software is Copyright (c) 2005-2016 by Dominique Dumont.
#
# This is free software, licensed under:
#
#   The GNU Lesser General Public License, Version 2.1, February 1999
#
[
  {
    'author' => [
      'Dominique Dumont'
    ],
    'class_description' => 'options valid for all types of file systems.',
    'copyright' => [
      '2010,2011 Dominique Dumont'
    ],
    'element' => [
      'async',
      {
        'type' => 'leaf',
        'value_type' => 'boolean'
      },
      'atime',
      {
        'type' => 'leaf',
        'value_type' => 'boolean'
      },
      'auto',
      {
        'type' => 'leaf',
        'value_type' => 'boolean'
      },
      'dev',
      {
        'type' => 'leaf',
        'value_type' => 'boolean'
      },
      'exec',
      {
        'type' => 'leaf',
        'value_type' => 'boolean'
      },
      'group',
      {
        'type' => 'leaf',
        'value_type' => 'boolean'
      },
      'mand',
      {
        'type' => 'leaf',
        'value_type' => 'boolean'
      },
      'user',
      {
        'help' => {
          '0' => 'Only root can mount the file system',
          '1' => 'user can mount the file system'
        },
        'type' => 'leaf',
        'value_type' => 'boolean'
      },
      'defaults',
      {
        'help' => {
          '1' => 'option equivalent to rw, suid, dev, exec, auto, nouser, and async'
        },
        'type' => 'leaf',
        'value_type' => 'boolean'
      },
      'rw',
      {
        'help' => {
          '0' => 'read-only file system'
        },
        'type' => 'leaf',
        'value_type' => 'boolean'
      },
      'relatime',
      {
        'type' => 'leaf',
        'value_type' => 'boolean'
      }
    ],
    'license' => 'LGPL2',
    'name' => 'Fstab::CommonOptions'
  }
]
;