This file is indexed.

/usr/share/doc/python-lunch/examples/dependencies.lunch is in python-lunch 0.4.0-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
#!/usr/bin/env lunch 
# This example demonstrates dependencies.

# A bunch of processes depending on the xeyes:
add_command("xeyes", identifier="xeyes")
add_command("xcalc", identifier="xcalc", depends="xeyes")
add_command("xclock", identifier="xclock", depends="xeyes")
add_command("xlogo", identifier="xlogo", depends="xeyes")


# A chain of dependencies:
add_command("xconsole", identifier="xconsole", sleep_after=1.0)
add_command("xman", identifier="xman", depends="xconsole")
add_command("xman", identifier="xman2", depends="xman")

# A process that depends on two:
add_command("glxgears", depends=["xlogo", "xconsole"])