This file is indexed.

/usr/share/pyshared/lsm/__init__.py is in python-libstoragemgmt 0.0.20-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
__all__ = [ "client",
            "cmdline",
            "common",
            "data",
            "iplugin",
            "ontap",
            "pluginrunner",
            "simulator",
            "smis",
            "transport",
            "version", ]

from client import Client
from cmdline import ArgError, CmdLine
from common import Error, Info, SocketEOF, LsmError, ErrorLevel, ErrorNumber, \
    JobStatus
from data import DataEncoder, DataDecoder, IData, Initiator, Volume, Pool, \
    FileSystem, Snapshot, NfsExport, BlockRange, AccessGroup
from iplugin import IPlugin, IStorageAreaNetwork, INetworkAttachedStorage, INfs
from ontap import Ontap
from pluginrunner import PluginRunner
from simulator import StorageSimulator, SimJob, SimState
from smis import Smis
from transport import Transport
from version import VERSION
from smisproxy import SmisProxy