This file is indexed.

/usr/share/ganeti/2.15/ssl-update is in ganeti-2.15 2.15.2-3.

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
#!/usr/bin/python
# This file is automatically generated, do not edit!
# Edit ganeti.tools.ssl_update instead.

"""Bootstrap script for L{ganeti.tools.ssl_update}"""

# pylint: disable=C0103
# C0103: Invalid name

import sys
import ganeti.tools.ssl_update as main

# Temporarily alias commands until bash completion
# generator is changed
if hasattr(main, "commands"):
  commands = main.commands # pylint: disable=E1101
if hasattr(main, "aliases"):
  aliases = main.aliases # pylint: disable=E1101

if __name__ == "__main__":
  sys.exit(main.Main())