This file is indexed.

/usr/share/doc/php5-rrd/examples/php5-rrdtool-update.php is in php5-rrd 1.1.3-1+b1.

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
<?php

$rrdFile = "/tmp/net.rrd";


$opts =  array("920804700:12345", "920805000:12357");

//update rrd file
rrd_update($rrdFile, $opts);

?>