This file is indexed.

/usr/share/doc/syslogout/examples/etc/syslogout.d/netscape.bash is in syslogout 0.3.9.

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
17
18
# These programs sometimes crash and eat 
# up system resources even after logout.

# Uncomment for debugging:
#set -x

for prog in navigator communicator
do
  if [ "`ps --user $USER | grep -c $prog`" != 0 ]; then 
    if [ -d /var/tmp/syslogout ]; then
         killall -v -9 $prog-smotif.real\
          >> /var/tmp/syslogout/$USER 2>&1
    else
        killall -v -9 $prog-smotif.real\
         &> /dev/null
    fi
 fi
done