This file is indexed.

/usr/share/systraq/rr-localdigest is in systraq 20160803-3.

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
18
19
#!/bin/sh -e

# Copyright (C) 2001, 2002, 2003, 2004 Joost van Baal
#
# This file is part of systraq.  Systraq is free software; you can redistribute
# it and/or modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of the License,
# or (at your option) any later version.  You should have received a copy of
# the GNU General Public License along with this file (see COPYING).

# typically /usr/local/var/state/systraq/systraq.sums
if test -r "$ST_LDIGESTS"
then
    echo
    echo 'local file digests'
    ${ST_SUM:-sha256sum} -c "$ST_LDIGESTS" 2>&1 || true
else
    echo ST_LDIGESTS set to non-readable file $ST_LDIGESTS: ignoring
fi