This file is indexed.

/usr/share/pyshared/desktopcouch/start_local_couchdb.py is in python-desktopcouch-application 1.0.8-0ubuntu3.

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
"""Deprecated."""

import warnings
warnings.warn(
    'Deprecated import path; use desktopcouch.application.start_local_couchdb '
    'instead.', DeprecationWarning, stacklevel=2)

# pylint: disable=W0401,W0614
from desktopcouch.application.start_local_couchdb import *

if __name__ == "__main__":
    warnings.warn(
        'Deprecated; use desktopcouch.application.start_local_couchdb '
        'instead.', DeprecationWarning, stacklevel=2)
    start_couchdb()
    print "Desktop CouchDB started"