This file is indexed.

/usr/lib/python3/dist-packages/lvmdbusd/state.py is in lvm2-dbusd 2.02.176-4.1ubuntu3.

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
# Copyright (C) 2015-2016 Red Hat, Inc. All rights reserved.
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions
# of the GNU General Public License v.2.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

from abc import ABCMeta, abstractmethod


class State(object, metaclass=ABCMeta):
	@abstractmethod
	def lvm_id(self):
		pass

	@abstractmethod
	def identifiers(self):
		pass

	@abstractmethod
	def create_dbus_object(self, path):
		pass

	def __str__(self):
		return '*****\n' + str(self.__dict__) + '\n******\n'