This file is indexed.

/usr/share/pyshared/mysql/utilities/__init__.py is in mysql-utilities 1.0.5-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
# Major, Minor, Patch, Status
VERSION = (1, 0, 3, 'rc1')
VERSION_STRING = "%s.%s.%s" % VERSION[0:3]
RELEASE_STRING = "%s.%s.%s%s" % VERSION
COPYRIGHT = "2010, Oracle and/or its affiliates. All rights reserved."
COPYRIGHT_FULL = "Copyright (c) " + COPYRIGHT + """
This program is free software; see the source for copying
conditions. There is NO warranty; not even for MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE, to the extent permitted by law."""
VERSION_FRM = ("MySQL Utilities {program} version " + RELEASE_STRING
               + "\n" + COPYRIGHT_FULL)