This file is indexed.

/usr/share/doc/munipack/rss.sh is in munipack-doc 0.5.10-1.

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
#!/bin/sh
# generates RSS

#set -x

which python
if [ $? -ne 0 ]; then
    echo "Python not found. If you want generate RSS, please install it." > /dev/stderr
    exit 1
fi

# generate it
python munipack-atom.py > news_feed.xml

# important when previous command fails
exit 0