This file is indexed.

/usr/share/doc/sysprofile/examples/etc/profile is in sysprofile 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
# /etc/profile: system-wide .profile file for bash(1).

if [ -f /etc/sysprofile ]; then
  if [ `grep -x ^SYSDEBUG=1 /etc/sysprofile` ]; then
    if [ ! -d /var/tmp/sysprofile ]; then
        mkdir -m 1777 /var/tmp/sysprofile
        touch /var/tmp/sysprofile/$USER
        chmod 600 /var/tmp/sysprofile/$USER
    fi
    . /etc/sysprofile >> /var/tmp/sysprofile/$USER 2>&1
  else
    . /etc/sysprofile
  fi
fi