This file is indexed.

/etc/dotlrn/install/check-errors-output.sh is in dotlrn 2.5.0+dfsg-10.

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

file_name=$1

# FIXME: Ignore InterMedia errors for now
egrep -i 'error' $file_name | egrep -i -v 'no error' | egrep -i -v 'ODCIINDEXCREATE|Intermedia' | egrep -i -v 'If not, please check your server error log'

exit 0