This file is indexed.

/usr/share/planet-venus/tools/publish.py is in planet-venus 0~git9de2109-4.

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/python
"""
Main program to run just the splice portion of planet
"""

import os.path
import sys
from planet import publish, config

if __name__ == '__main__':

    if len(sys.argv) == 2 and os.path.isfile(sys.argv[1]):
        config.load(sys.argv[1])
        publish.publish(config)
    else:
        print "Usage:"
        print "  python %s config.ini" % sys.argv[0]