This file is indexed.

/usr/share/yapra/legacy_plugins/stdout.rb is in yapra 0.1.2-7.

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
## Write data to stdout -- Soutaro Matsumoto

def stdout(config, data)
  data.each {|x| puts x }
  data
end