This file is indexed.

/usr/share/doc/keychain/examples/keychain.xsession is in keychain 2.7.1-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
# Sourced by Xsession(5)

if test -d "$HOME/.keychain"
then
  h="`uname -n 2>/dev/null || echo unknown`"
  keychain --ignore-missing --inherit local-once --noask --nocolor --quick \
    --quiet --host "$h"
  if test -f "$HOME/.keychain/$h-sh"
  then
    . "$HOME/.keychain/$h-sh"
  fi
  if test -f "$HOME/.keychain/$h-sh-gpg"
  then
    . "$HOME/.keychain/$h-sh-gpg"
  fi
fi