This file is indexed.

/usr/bin/tryton is in tryton-client 4.6.5-1.

This file is owned by root:root, with mode 0o755.

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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#! /usr/bin/python2
import sys
import os
try:
    DIR = os.path.abspath(os.path.normpath(os.path.join(__file__,
        '..', '..', 'tryton')))
    if os.path.isdir(DIR):
        sys.path.insert(0, os.path.dirname(DIR))
except NameError:
    pass

if hasattr(sys, 'frozen'):
    if not ('-v' in sys.argv or '--verbose' in sys.argv or
            '-l' in sys.argv or '--log-level' in sys.argv):
        sys.stdout = open(os.devnull, 'w')
        sys.stderr = open(os.devnull, 'w')
    prefix = os.path.dirname(sys.executable)
    os.environ['GTK_EXE_PREFIX'] = prefix
    os.environ['GTK_DATA_PREFIX'] = prefix
    etc = os.path.join(prefix, 'etc')
    os.environ['GTK2_RC_FILES'] = os.path.join(etc, 'gtk-2.0', 'gtkrc')
    os.environ['GDK_PIXBUF_MODULE_FILE'] = os.path.join(
            etc, 'gtk-2.0', 'gdk-pixbuf.loaders')
    os.environ['GTK_IM_MODULE_FILE'] = os.path.join(
            etc, 'gtk-2.0', 'gtk.immodules')
    if sys.platform == 'win32':
        # cx_freeze >= 5 put python modules under lib directory
        sys.path.append(os.path.join(prefix, 'lib'))
        os.environ.setdefault('SSL_CERT_FILE',
            os.path.join(etc, 'ssl', 'cert.pem'))
        os.environ.setdefault('SSL_CERT_DIR',
            os.path.join(etc, 'ssl', 'certs'))

    # On first launch the MacOSX app launcher may append an extra unique
    # argument starting with -psn_. This must be filtered to not crash the
    # option parser.
    if sys.platform == 'darwin':
        sys.argv = [a for a in sys.argv if not a.startswith('-psn_')]


# Disable dbusmenu to show second menu in tabs
os.environ['UBUNTU_MENUPROXY'] = '0'
# overlay-scrollbar breaks treeview height
os.environ['LIBOVERLAY_SCROLLBAR'] = '0'

from tryton import client
if '--profile' in sys.argv:
    import profile
    import pstats
    import tempfile
    import os
    sys.argv.remove('--profile')

    statfile = tempfile.mkstemp(".stat", "tryton-")[1]
    profile.run('client.TrytonClient().run()', statfile)
    s = pstats.Stats(statfile)
    s.sort_stats('cumulative').print_stats()
    s.sort_stats('call').print_stats()
    s.sort_stats('time').print_stats()
    s.sort_stats('time')
    s.print_callers()
    s.print_callees()

    os.remove(statfile)

else:
    client.TrytonClient().run()