This file is indexed.

/usr/share/cluster-glue/lrmtest/testcases/rscmgmt.log_filter is in cluster-glue 1.0.12-5.

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

awk '
n<2 && /ERROR: on_msg_add_rsc: same id resource exists./ {n++; next}
m<1 && /ERROR: on_msg_del_rsc: no rsc with id/ {m++; next}
{print}
END{
	if( n!=2 )
		print "ERROR: missed on_msg_add_rsc errors";
	if( m!=1 )
		print "ERROR: missed on_msg_del_rsc errors";
}
'