This file is indexed.

/usr/lib/python2.7/dist-packages/vamos/__init__.py is in undertaker 1.6-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
"""
Attributes:

   default_architecture   -- the default architecture to use
   prefer_32bit  -- If running on an amd64 64bit host, prefer configuring and compiling for 32bit.
   kernelversion -- normally determined automatically, but can be overridden here
"""

import os

default_architecture = "x86"

if os.environ.has_key("VAMOS_PREFER_64BIT") or \
        os.environ.has_key('ARCH') and os.environ['ARCH'] == 'x86_64':
    prefer_32bit = False
else:
    prefer_32bit = True

kernelversion = None