/usr/share/phpsysinfo/plugins/ipmi/ipmi.config.php is in phpsysinfo 3.0.17-1.
This file is owned by nobody:nogroup, with mode 0o644.
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 20 21 22 | <?php
/**
* IPMI Plugin Config File
*
* PHP version 5
*
* @category PHP
* @package PSI_Plugin_ipmi
* @author Mieczyslaw Nalewaj <namiltd@users.sourceforge.net>
* @copyright 2009 phpSysInfo
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @version SVN: $Id: ipmi.config.php 360 2010-01-31 10:47:51Z jacky672 $
* @link http://phpsysinfo.sourceforge.net
*/
/**
* define how to access the IPMI statistic data
* - 'command' ipmitool command is run everytime the block gets refreshed or build
* if access error execute first: chmod 666 /dev/ipmi0
* - 'data' (a file must be available in the data directory of the phpsysinfo installation with the filename "ipmi.txt"; content is the output from "ipmitool sensor")
*/
define('PSI_PLUGIN_IPMI_ACCESS', 'command');
?>
|