rename variables to support multiple daemons
This commit is contained in:
parent
1f36544657
commit
17287fa255
|
@ -6,7 +6,7 @@ Title="Event Log"
|
|||
<thead>
|
||||
<tr>
|
||||
<th class="sorter-false filter-false"> Status </th>
|
||||
<th class="sorter-metric filter-false"> Event ID </th>
|
||||
<th class="sorter-digit filter-false"> Event ID </th>
|
||||
<th class="filter-time" data-placeholder="by time"> Time Stamp </th>
|
||||
<th class="filter-name" data-placeholder="by name"> Sensor Name </th>
|
||||
<th class="filter-desc" data-placeholder="Search..."> Description </th>
|
||||
|
|
|
@ -1,113 +1,248 @@
|
|||
Menu="IPMI:2"
|
||||
Title="Fan Control"
|
||||
---
|
||||
<?PHP
|
||||
/* Copyright 2015, Bergware International.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License version 2,
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* Plugin development contribution by gfjardim
|
||||
*/
|
||||
?>
|
||||
<?
|
||||
$plugin = "ipmitool-plugin";
|
||||
$cfg = parse_plugin_cfg($plugin);
|
||||
$sName = "autofan";
|
||||
$fName = "/usr/local/emhttp/plugins/$plugin/scripts/$sName";
|
||||
<form markdown="1" name="ipmifan_settings" method="POST" action="/update.php" target="progressFrame">
|
||||
<input type="hidden" name="#file" value="ipmitool-plugin/ipmitool-plugin.cfg" />
|
||||
<input type="hidden" id="command" name="#command" value="" />
|
||||
|
||||
function temp_val($val) {
|
||||
global $display;
|
||||
return $display['unit']=='C' ? $val : round(9/5*$val+32);
|
||||
}
|
||||
function scan_dir($dir, $type = "") {
|
||||
$out = array();
|
||||
foreach (array_slice(scandir($dir), 2) as $entry){
|
||||
$sep = (preg_match("/\/$/", $dir)) ? "" : "/";
|
||||
$out[] = $dir.$sep.$entry ;
|
||||
}
|
||||
return $out;
|
||||
}
|
||||
function list_pwm() {
|
||||
$out = array();
|
||||
exec("find /sys/devices -type f -iname 'pwm[0-9]' -exec dirname \"{}\" +|uniq", $chips);
|
||||
foreach ($chips as $chip) {
|
||||
$name = is_file("$chip/name") ? file_get_contents("$chip/name") : "";
|
||||
foreach (preg_grep("/pwm\d+$/", scan_dir($chip)) as $pwm) {
|
||||
$out[] = array('chip'=>$name, 'name'=>end(split('/',$pwm)), 'sensor'=>$pwm);
|
||||
}
|
||||
}
|
||||
return $out;
|
||||
}
|
||||
?>
|
||||
<script>
|
||||
function detectFan() {
|
||||
var pwm = $("select[name=controller] option:selected").val();
|
||||
if (pwm) {
|
||||
$("input[name=fan]").val('Please wait...');
|
||||
$("#fan").val('Detecting ...');
|
||||
$.get('/plugins/<?=$plugin;?>/include/SystemFan.php',{op:'detect', pwm:pwm},function(data) {
|
||||
$("input[name=fan]").val(data);
|
||||
$("#fan").val('Detect');
|
||||
});
|
||||
}
|
||||
}
|
||||
function detectFanLow() {
|
||||
var pwm = $("select[name=controller] option:selected").val();
|
||||
var fan = $("input[name=fan]").val();
|
||||
if (pwm && fan) {
|
||||
$("input[name=pwm]").val('Please wait...');
|
||||
$("#pwm").val('Detecting ...');
|
||||
$.get('/plugins/<?=$plugin;?>/include/SystemFan.php',{op:'pwm',pwm:pwm,fan:fan},function(data) {
|
||||
$("input[name=pwm]").val(data);
|
||||
$("#pwm").val('Detect');
|
||||
});
|
||||
}
|
||||
}
|
||||
$(function() {
|
||||
//showStatus('<?=$sName?>');
|
||||
});
|
||||
</script>
|
||||
|
||||
<form markdown="1" method="POST" action="/update.php" target="progressFrame">
|
||||
<input type="hidden" name="#file" value="<?=$plugin?>/<?=$plugin?>.cfg">
|
||||
<input type="hidden" name="#include" value="plugins/<?=$plugin?>/include/update.autofan.php">
|
||||
<input type="hidden" name="#prefix" value="controller=c&fan=f&pwm=l&low=t&high=T&interval=m">
|
||||
<span class="bitstream" style="float:right;margin-right:12px"><?=exec("$fName -V")?></span>
|
||||
|
||||
Fan control function:
|
||||
IPMI Fan Control:
|
||||
: <select name="service" size="1">
|
||||
<?=mk_option($cfg['service'], "0", "Disabled")?>
|
||||
<?=mk_option($cfg['service'], "1", "Enabled")?>
|
||||
<?=mk_option($cfg['service'], "0", "No")?>
|
||||
<?=mk_option($cfg['service'], "1", "Yes")?>
|
||||
</select>
|
||||
|
||||
PWM controller:
|
||||
: <select name="controller" size="1">
|
||||
<?=mk_option($cfg['controller'], "", "None")?>
|
||||
<?foreach (list_pwm() as $pwm):?>
|
||||
<?=mk_option($cfg['controller'], $pwm['sensor'], "{$pwm['chip']} - {$pwm['name']}")?>
|
||||
<?endforeach;?>
|
||||
</select>
|
||||
|
||||
|
||||
PWM fan:
|
||||
: <input type="text" name="fan" value="<?=$cfg['fan']?>" placeholder="Click DETECT"><input type="button" value="Detect" onclick="detectFan();" id="fan" style="margin-top:0">
|
||||
<?php if ($fans[0]): ?>
|
||||
|
||||
Minimun PWM value:
|
||||
: <input type="text" name="pwm" value="<?=$cfg['pwm']?>" placeholder="Click DETECT"><input type="button" value="Detect" onclick="detectFanLow();" id="pwm" style="margin-top:0">
|
||||
<?=$fans[0];?> temperature sensor:
|
||||
: <select name="<?='FAN_'.$fans[0];?>">
|
||||
<option value='0'>Auto</option>
|
||||
<?=ipmi_get_options($sensors, 'Temperature');?>
|
||||
<option value='HDD'>HDD Temperatures</option>
|
||||
</select>
|
||||
|
||||
Low temperature threshold (°<?=$display['unit']?>):
|
||||
: <input type="number" min="0" max="300" name="low" value="<?=temp_val($cfg['low'])?>" class="narrow">
|
||||
<?=$fans[0];?> Low temperature threshold:
|
||||
: <select name="<?='FAN_'.$fans[0];?>_LOW">
|
||||
<option value='0'>Auto</option>
|
||||
</select>
|
||||
|
||||
High temperature threshold (°<?=$display['unit']?>):
|
||||
: <input type="number" min="0" max="300" name="high" value="<?=temp_val($cfg['high'])?>" class="narrow">
|
||||
<?=$fans[0];?> High temperature threshold:
|
||||
: <select name="<?='FAN_'.$fans[0];?>_HIGH">
|
||||
<option value='0'>Auto</option>
|
||||
</select>
|
||||
|
||||
Refresh interval (minutes):
|
||||
: <input type="text" name="interval" value="<?=$cfg['interval']?>" class="narrow">
|
||||
|
||||
|
||||
<input type="submit" name="#default" value="Default">
|
||||
: <input type="submit" name="#apply" value="Apply"><input type="button" value="Done" onclick="done()">
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($fans[1]): ?>
|
||||
|
||||
<?=$fans[1];?> temperature sensor:
|
||||
: <select name="<?='FAN_'.$fans[1];?>">
|
||||
<option value='0'>Auto</option>
|
||||
<?=ipmi_get_options($sensors, 'Temperature');?>
|
||||
<option value='HDD'>HDD Temperatures</option>
|
||||
</select>
|
||||
|
||||
<?=$fans[1];?> Low temperature threshold:
|
||||
: <select name="<?='FAN_'.$fans[1];?>_LOW">
|
||||
<option value='0'>Auto</option>
|
||||
</select>
|
||||
|
||||
<?=$fans[1];?> High temperature threshold:
|
||||
: <select name="<?='FAN_'.$fans[1];?>_HIGH">
|
||||
<option value='0'>Auto</option>
|
||||
</select>
|
||||
|
||||
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($fans[2]): ?>
|
||||
|
||||
<?=$fans[2];?> temperature sensor:
|
||||
: <select name="<?='FAN_'.$fans[2];?>">
|
||||
<option value='0'>Auto</option>
|
||||
<?=ipmi_get_options($sensors, 'Temperature');?>
|
||||
<option value='HDD'>HDD Temperatures</option>
|
||||
</select>
|
||||
|
||||
<?=$fans[2];?> Low temperature threshold:
|
||||
: <select name="<?='FAN_'.$fans[2];?>_LOW">
|
||||
<option value='0'>Auto</option>
|
||||
</select>
|
||||
|
||||
<?=$fans[2];?> High temperature threshold:
|
||||
: <select name="<?='FAN_'.$fans[2];?>_HIGH">
|
||||
<option value='0'>Auto</option>
|
||||
</select>
|
||||
|
||||
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($fans[3]): ?>
|
||||
|
||||
<?=$fans[3];?> temperature sensor:
|
||||
: <select name="<?='FAN_'.$fans[3];?>">
|
||||
<option value='0'>Auto</option>
|
||||
<?=ipmi_get_options($sensors, 'Temperature');?>
|
||||
<option value='HDD'>HDD Temperatures</option>
|
||||
</select>
|
||||
|
||||
<?=$fans[3];?> Low temperature threshold:
|
||||
: <select name="<?='FAN_'.$fans[3];?>_LOW">
|
||||
<option value='0'>Auto</option>
|
||||
</select>
|
||||
|
||||
<?=$fans[3];?> High temperature threshold:
|
||||
: <select name="<?='FAN_'.$fans[3];?>_HIGH">
|
||||
<option value='0'>Auto</option>
|
||||
</select>
|
||||
|
||||
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($fans[4]): ?>
|
||||
|
||||
<?=$fans[4];?> temperature sensor:
|
||||
: <select name="<?='FAN_'.$fans[4];?>">
|
||||
<option value='0'>Auto</option>
|
||||
<?=ipmi_get_options($sensors, 'Temperature');?>
|
||||
<option value='HDD'>HDD Temperatures</option>
|
||||
</select>
|
||||
|
||||
<?=$fans[4];?> Low temperature threshold:
|
||||
: <select name="<?='FAN_'.$fans[4];?>_LOW">
|
||||
<option value='0'>Auto</option>
|
||||
</select>
|
||||
|
||||
<?=$fans[4];?> High temperature threshold:
|
||||
: <select name="<?='FAN_'.$fans[4];?>_HIGH">
|
||||
<option value='0'>Auto</option>
|
||||
</select>
|
||||
|
||||
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($fans[5]): ?>
|
||||
|
||||
<?=$fans[5];?> temperature sensor:
|
||||
: <select name="<?='FAN_'.$fans[5];?>">
|
||||
<option value='0'>Auto</option>
|
||||
<?=ipmi_get_options($sensors, 'Temperature');?>
|
||||
<option value='HDD'>HDD Temperatures</option>
|
||||
</select>
|
||||
|
||||
<?=$fans[5];?> Low temperature threshold:
|
||||
: <select name="<?='FAN_'.$fans[5];?>_LOW">
|
||||
<option value='0'>Auto</option>
|
||||
</select>
|
||||
|
||||
<?=$fans[5];?> High temperature threshold:
|
||||
: <select name="<?='FAN_'.$fans[5];?>_HIGH">
|
||||
<option value='0'>Auto</option>
|
||||
</select>
|
||||
|
||||
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($fans[6]): ?>
|
||||
|
||||
<?=$fans[6];?> temperature sensor:
|
||||
: <select name="<?='FAN_'.$fans[6];?>">
|
||||
<option value='0'>Auto</option>
|
||||
<?=ipmi_get_options($sensors, 'Temperature');?>
|
||||
<option value='HDD'>HDD Temperatures</option>
|
||||
</select>
|
||||
|
||||
<?=$fans[6];?> Low temperature threshold:
|
||||
: <select name="<?='FAN_'.$fans[6];?>_LOW">
|
||||
<option value='0'>Auto</option>
|
||||
</select>
|
||||
|
||||
<?=$fans[6];?> High temperature threshold:
|
||||
: <select name="<?='FAN_'.$fans[6];?>_HIGH">
|
||||
<option value='0'>Auto</option>
|
||||
</select>
|
||||
|
||||
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($fans[7]): ?>
|
||||
|
||||
<?=$fans[7];?> temperature sensor:
|
||||
: <select name="<?='FAN_'.$fans[7];?>">
|
||||
<option value='0'>Auto</option>
|
||||
<?=ipmi_get_options($sensors, 'Temperature');?>
|
||||
<option value='HDD'>HDD Temperatures</option>
|
||||
</select>
|
||||
|
||||
<?=$fans[7];?> Low temperature threshold:
|
||||
: <select name="<?='FAN_'.$fans[7];?>_LOW">
|
||||
<option value='0'>Auto</option>
|
||||
</select>
|
||||
|
||||
<?=$fans[7];?> High temperature threshold:
|
||||
: <select name="<?='FAN_'.$fans[7];?>_HIGH">
|
||||
<option value='0'>Auto</option>
|
||||
</select>
|
||||
|
||||
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($fans[8]): ?>
|
||||
|
||||
<?=$fans[8];?> temperature sensor:
|
||||
: <select name="<?='FAN_'.$fans[8];?>">
|
||||
<option value='0'>Auto</option>
|
||||
<?=ipmi_get_options($sensors, 'Temperature');?>
|
||||
<option value='HDD'>HDD Temperatures</option>
|
||||
</select>
|
||||
|
||||
<?=$fans[8];?> Low temperature threshold:
|
||||
: <select name="<?='FAN_'.$fans[8];?>_LOW">
|
||||
<option value='0'>Auto</option>
|
||||
</select>
|
||||
|
||||
<?=$fans[8];?> High temperature threshold:
|
||||
: <select name="<?='FAN_'.$fans[8];?>_HIGH">
|
||||
<option value='0'>Auto</option>
|
||||
</select>
|
||||
|
||||
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($fans[9]): ?>
|
||||
|
||||
<?=$fans[9];?> temperature sensor:
|
||||
: <select name="<?='FAN_'.$fans[9];?>">
|
||||
<option value='0'>Auto</option>
|
||||
<?=ipmi_get_options($sensors, 'Temperature');?>
|
||||
<option value='HDD'>HDD Temperatures</option>
|
||||
</select>
|
||||
|
||||
<?=$fans[9];?> Low temperature threshold:
|
||||
: <select name="<?='FAN_'.$fans[9];?>_LOW">
|
||||
<option value='0'>Auto</option>
|
||||
</select>
|
||||
|
||||
<?=$fans[9];?> High temperature threshold:
|
||||
: <select name="<?='FAN_'.$fans[9];?>_HIGH">
|
||||
<option value='0'>Auto</option>
|
||||
</select>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
|
||||
|
||||
<input id="FAN_DEFAULT" class="ipmifan-run" type="button" value="Default" onClick="resetFANDATA(this.form);">
|
||||
: <input id="btnFANApply" type="submit" value="Apply" onClick="verifyFANDATA(this.form)"><input type="button" value="Done" onClick="done()">
|
||||
</form>
|
||||
|
|
|
@ -0,0 +1,101 @@
|
|||
Menu="IPMI:2"
|
||||
Title="Fan Control"
|
||||
---
|
||||
<?
|
||||
$plugin = "ipmitool-plugin";
|
||||
$cfg = parse_plugin_cfg($plugin);
|
||||
$sName = "autofan";
|
||||
$fName = "/usr/local/emhttp/plugins/$plugin/scripts/$sName";
|
||||
|
||||
function temp_val($val) {
|
||||
global $display;
|
||||
return $display['unit']=='C' ? $val : round(9/5*$val+32);
|
||||
}
|
||||
function scan_dir($dir, $type = "") {
|
||||
$out = array();
|
||||
foreach (array_slice(scandir($dir), 2) as $entry){
|
||||
$sep = (preg_match("/\/$/", $dir)) ? "" : "/";
|
||||
$out[] = $dir.$sep.$entry ;
|
||||
}
|
||||
return $out;
|
||||
}
|
||||
function list_pwm() {
|
||||
$out = array();
|
||||
exec("find /sys/devices -type f -iname 'pwm[0-9]' -exec dirname \"{}\" +|uniq", $chips);
|
||||
foreach ($chips as $chip) {
|
||||
$name = is_file("$chip/name") ? file_get_contents("$chip/name") : "";
|
||||
foreach (preg_grep("/pwm\d+$/", scan_dir($chip)) as $pwm) {
|
||||
$out[] = array('chip'=>$name, 'name'=>end(split('/',$pwm)), 'sensor'=>$pwm);
|
||||
}
|
||||
}
|
||||
return $out;
|
||||
}
|
||||
?>
|
||||
|
||||
<form markdown="1" method="POST" action="/update.php" target="progressFrame">
|
||||
<input type="hidden" name="#file" value="<?=$plugin?>/<?=$plugin?>.cfg">
|
||||
<input type="hidden" name="#include" value="plugins/<?=$plugin?>/include/update.autofan.php">
|
||||
<input type="hidden" name="#prefix" value="controller=c&fan=f&pwm=l&low=t&high=T&interval=m">
|
||||
<span class="bitstream" style="float:right;margin-right:12px"><?=exec("$fName -V")?></span>
|
||||
|
||||
Fan control function:
|
||||
: <select name="service" size="1">
|
||||
<?=mk_option($cfg['service'], "0", "Disabled")?>
|
||||
<?=mk_option($cfg['service'], "1", "Enabled")?>
|
||||
</select>
|
||||
|
||||
PWM controller:
|
||||
: <select name="controller" size="1">
|
||||
<?=mk_option($cfg['controller'], "", "None")?>
|
||||
<?foreach (list_pwm() as $pwm):?>
|
||||
<?=mk_option($cfg['controller'], $pwm['sensor'], "{$pwm['chip']} - {$pwm['name']}")?>
|
||||
<?endforeach;?>
|
||||
</select>
|
||||
|
||||
PWM fan:
|
||||
: <input type="text" name="fan" value="<?=$cfg['fan']?>" placeholder="Click DETECT"><input type="button" value="Detect" onclick="detectFan();" id="fan" style="margin-top:0">
|
||||
|
||||
Minimun PWM value:
|
||||
: <input type="text" name="pwm" value="<?=$cfg['pwm']?>" placeholder="Click DETECT"><input type="button" value="Detect" onclick="detectFanLow();" id="pwm" style="margin-top:0">
|
||||
|
||||
Low temperature threshold (°<?=$display['unit']?>):
|
||||
: <input type="number" min="0" max="300" name="low" value="<?=temp_val($cfg['low'])?>" class="narrow">
|
||||
|
||||
High temperature threshold (°<?=$display['unit']?>):
|
||||
: <input type="number" min="0" max="300" name="high" value="<?=temp_val($cfg['high'])?>" class="narrow">
|
||||
|
||||
Refresh interval (minutes):
|
||||
: <input type="text" name="interval" value="<?=$cfg['interval']?>" class="narrow">
|
||||
|
||||
<input type="submit" name="#default" value="Default">
|
||||
: <input type="submit" name="#apply" value="Apply"><input type="button" value="Done" onclick="done()">
|
||||
</form>
|
||||
|
||||
<script>
|
||||
function detectFan() {
|
||||
var pwm = $("select[name=controller] option:selected").val();
|
||||
if (pwm) {
|
||||
$("input[name=fan]").val('Please wait...');
|
||||
$("#fan").val('Detecting ...');
|
||||
$.get('/plugins/<?=$plugin;?>/include/SystemFan.php',{op:'detect', pwm:pwm},function(data) {
|
||||
$("input[name=fan]").val(data);
|
||||
$("#fan").val('Detect');
|
||||
});
|
||||
}
|
||||
}
|
||||
function detectFanLow() {
|
||||
var pwm = $("select[name=controller] option:selected").val();
|
||||
var fan = $("input[name=fan]").val();
|
||||
if (pwm && fan) {
|
||||
$("input[name=pwm]").val('Please wait...');
|
||||
$("#pwm").val('Detecting ...');
|
||||
$.get('/plugins/<?=$plugin;?>/include/SystemFan.php',{op:'pwm',pwm:pwm,fan:fan},function(data) {
|
||||
$("input[name=pwm]").val(data);
|
||||
$("#pwm").val('Detect');
|
||||
});
|
||||
}
|
||||
}
|
||||
$(function() {
|
||||
//showStatus('<?=$sName?>');
|
||||
});
|
||||
</script>
|
|
@ -33,5 +33,4 @@ Icon="sensorspage.png"
|
|||
<script type="text/javascript" src="/plugins/ipmitool-plugin/js/jquery.ipmitool-plugin.js"></script>
|
||||
<script type="text/javascript" src="/plugins/tablesorter/js/jquery.tablesorter.combined.min.js"></script>
|
||||
<script type="text/javascript" src="/plugins/tablesorter/js/pager/jquery.tablesorter.pager.js"></script>
|
||||
<script type="text/javascript" src="/plugins/tablesorter/js/parsers/parser-metric.min.js"></script>
|
||||
<script type="text/javascript" src="/webGui/javascript/jquery.switchbutton.js"></script>
|
||||
|
|
|
@ -3,7 +3,6 @@ Title="Settings"
|
|||
---
|
||||
<?php
|
||||
require_once '/usr/local/emhttp/plugins/ipmitool-plugin/include/ipmitool_helpers.php';
|
||||
$sName = "ipmievd";
|
||||
?>
|
||||
|
||||
<script type="text/javascript" src="/plugins/ipmitool-plugin/js/jquery.mask.js"></script>
|
||||
|
@ -13,19 +12,19 @@ $sName = "ipmievd";
|
|||
<input type="hidden" id="command" name="#command" value="" />
|
||||
|
||||
Enable Event Notifications:
|
||||
: <select id="SERVICE" name="SERVICE" size="1" onChange="checkRUNNING(this.form);">
|
||||
<?=mk_option($service, "disable", "No");?>
|
||||
<?=mk_option($service, "enable", "Yes");?>
|
||||
: <select id="IPMIEVD" name="IPMIEVD" size="1" onChange="checkIPMIEVD(this.form);">
|
||||
<?=mk_option($ipmievd, "disable", "No");?>
|
||||
<?=mk_option($ipmievd, "enable", "Yes");?>
|
||||
</select>
|
||||
|
||||
Enable Remote Connection:
|
||||
: <select id="REMOTE" class="ipmitool-run" name="REMOTE" title="" size="1" onChange="checkREMOTE(this.form);">
|
||||
: <select id="REMOTE" class="ipmievd-run" name="REMOTE" title="" size="1" onChange="checkREMOTE(this.form);">
|
||||
<?=mk_option($remote, "disable", "No");?>
|
||||
<?=mk_option($remote, "enable", "Yes");?>
|
||||
</select>
|
||||
|
||||
<label class="ipmitool-lan">IPMI IP Address:</label>
|
||||
: <input id="IPADDR" type="text" class="ipmitool-lan ipmitool-ipaddr" name="IPADDR" maxlength="40" value="<?=$ipaddr;?>" title="IPMI IP address" placeholder="" >
|
||||
: <input id="IPADDR" type="text" class="ipmitool-lan ipmitool-ipaddr" name="IPADDR" maxlength="40" value="<?=$ipaddr;?>" title="IPMI IP address" placeholder="" ><label class='ipmitool-lan'><?=$conn_check;?></label>
|
||||
|
||||
<label class="ipmitool-lan">IPMI User Name:</label>
|
||||
: <input id="USER" type="text" class="ipmitool-lan" name="USER" maxlength="40" value="<?=$user;?>" title="username for remote access IPMI" placeholder="username for remote access" >
|
||||
|
@ -35,20 +34,23 @@ Enable Remote Connection:
|
|||
|
||||
Display CPU temperature:
|
||||
: <select name="CPU_TEMP">
|
||||
<?=ipmi_get_options($cpu, 'Temperature', $options);?>
|
||||
<option value='false'>None</option>
|
||||
<?=ipmi_get_options($sensors, 'Temperature', $cpu);?>
|
||||
</select>
|
||||
|
||||
Display Motherboard temperature:
|
||||
: <select name="MB_TEMP">
|
||||
<?=ipmi_get_options($mb, 'Temperature', $options);?>
|
||||
</select>
|
||||
<option value='false'>None</option>
|
||||
<?=ipmi_get_options($sensors, 'Temperature', $mb);?>
|
||||
</select>
|
||||
|
||||
Display Fan speed:
|
||||
: <select name="IPMI_FAN">
|
||||
<?=ipmi_get_options($fan, 'Fan', $options);?>
|
||||
</select>
|
||||
<option value='false'>None</option>
|
||||
<?=ipmi_get_options($sensors, 'Fan', $fan);?>
|
||||
</select>
|
||||
|
||||
<input id="DEFAULT" class="ipmitool-run" type="button" value="Default" onClick="resetDATA(this.form);">
|
||||
<input id="DEFAULT" class="ipmievd-run" type="button" value="Default" onClick="resetDATA(this.form);">
|
||||
: <input id="btnApply" type="submit" value="Apply" onClick="verifyDATA(this.form)"><input type="button" value="Done" onClick="done()">
|
||||
</form>
|
||||
|
||||
|
@ -57,7 +59,7 @@ $(function(){
|
|||
$('.tabs')
|
||||
.append("<span class='status'>Fan Control: <?=$ipmifan_status;?> </span>")
|
||||
.append("<span class='status'>Event Notification: <?=$ipmievd_status;?> </span>");
|
||||
checkRUNNING(document.ipmitool_settings);
|
||||
checkIPMIEVD(document.ipmitool_settings);
|
||||
checkREMOTE(document.ipmitool_settings);
|
||||
decData(document.ipmitool_settings);
|
||||
//ip address input mask
|
||||
|
@ -72,16 +74,16 @@ function resetDATA(form) {
|
|||
form.submit();
|
||||
}
|
||||
|
||||
function checkRUNNING(form) {
|
||||
if ("<?=$ipmievd_running;?>" == "yes")
|
||||
function checkIPMIEVD(form) {
|
||||
if ("<?=$ipmievd_running;?>" == true)
|
||||
{
|
||||
$(".ipmitool-run").prop("disabled", true);
|
||||
$(".ipmievd-run").prop("disabled", true);
|
||||
form.btnApply.disabled = "disabled";
|
||||
}else{
|
||||
$(".ipmitool-run").prop("disabled", false);
|
||||
$(".ipmievd-run").prop("disabled", false);
|
||||
$("#btnApply").prop("disabled", false);
|
||||
}
|
||||
if (form.SERVICE.value == "enable")
|
||||
if (form.IPMIEVD.value == "enable")
|
||||
form.command.value = "/usr/local/emhttp/plugins/ipmitool-plugin/scripts/start";
|
||||
else {
|
||||
form.command.value = "/usr/local/emhttp/plugins/ipmitool-plugin/scripts/stop";
|
||||
|
@ -97,11 +99,11 @@ function checkREMOTE(form) {
|
|||
$(".ipmitool-lan").hide();
|
||||
else
|
||||
$(".ipmitool-lan").show();
|
||||
$(".ipmitool-lan").prop("disabled", (form.SERVICE.value == "enable"));
|
||||
$(".ipmitool-lan").prop("disabled", (form.IPMIEVD.value == "enable"));
|
||||
}
|
||||
|
||||
function verifyDATA(form) {
|
||||
form.SERVICE.value = form.SERVICE.value.replace(/ /g,"_");
|
||||
form.IPMIEVD.value = form.IPMIEVD.value.replace(/ /g,"_");
|
||||
form.REMOTE.value = form.REMOTE.value.replace(/ /g,"_");
|
||||
form.USER.value = form.USER.value.replace(/ /g,"_");
|
||||
form.PASSWORD.value = btoa(form.PASSWORD.value);
|
||||
|
|
|
@ -2,13 +2,17 @@
|
|||
/* ipmi tool variables*/
|
||||
$plugin = 'ipmitool-plugin';
|
||||
$cfg = parse_ini_file("/boot/config/plugins/$plugin/$plugin.cfg");
|
||||
$service = isset($cfg['SERVICE']) ? $cfg['SERVICE'] : "disable";
|
||||
$remote = isset($cfg['REMOTE']) ? $cfg['REMOTE'] : "disable";
|
||||
$ipmievd_running = trim(shell_exec( "[ -f /proc/`cat /var/run/ipmievd.pid0 2> /dev/null`/exe ] && echo 'yes' || echo 'no' 2> /dev/null" ));
|
||||
$ipmievd = isset($cfg['IPMIEVD']) ? $cfg['IPMIEVD'] : "disable";
|
||||
$ipmifan = isset($cfg['IPMIFAN']) ? $cfg['IPMIFAN'] : "disable";
|
||||
$remote = isset($cfg['REMOTE']) ? $cfg['REMOTE'] : "disable";
|
||||
|
||||
//check running status
|
||||
$ipmievd_running = trim(shell_exec( "[ -f /proc/`cat /var/run/ipmievd.pid0 2> /dev/null`/exe ] && echo 1 || echo 0 2> /dev/null" ));
|
||||
$ipmifan_running = trim(shell_exec( "[ -f /proc/`cat /var/run/ipmifan.pid 2> /dev/null`/exe ] && echo 1 || echo 0 2> /dev/null" ));
|
||||
$running = "<span class='green'>Running</span>";
|
||||
$stopped = "<span class='orange'>Stopped</span>";
|
||||
$ipmievd_status = ($ipmievd_running == "yes") ? $running : $stopped;
|
||||
$ipmifan_status = ($ipmifan_running == "yes") ? $running : $stopped;
|
||||
$ipmievd_status = ($ipmievd_running) ? $running : $stopped;
|
||||
$ipmifan_status = ($ipmifan_running) ? $running : $stopped;
|
||||
|
||||
// use save ip address or use local ipmi address
|
||||
$ipaddr = preg_match('/^(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)(?:[.](?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)){3}$/', $cfg['IPADDR']) ?
|
||||
|
@ -20,24 +24,32 @@ $mb = isset($cfg['MB_TEMP']) ? $cfg['MB_TEMP'] : ""; // mb temp display
|
|||
$fan = isset($cfg['IPMI_FAN']) ? $cfg['IPMI_FAN'] : ""; // fan speed display name
|
||||
$user = isset($cfg['USER']) ? $cfg['USER'] : ""; // user for remote access
|
||||
$password = isset($cfg['PASSWORD']) ? $cfg['PASSWORD'] : ""; // password for remote access
|
||||
$sensors = [$cpu, $mb, $fan];
|
||||
|
||||
// options for remote access or not
|
||||
$options = ($remote == "enable") ? "-I lanplus -H '$ipaddr' -U '$user' -P '".
|
||||
base64_decode($password)."'" : "";
|
||||
|
||||
// Get sensor info and check connection if remote enabled
|
||||
$sensors = ipmi_sensors($options);
|
||||
$fans = ipmi_get_fans($sensors);
|
||||
|
||||
if($remote == "enable"){
|
||||
$conn = ($sensors) ? true : false;
|
||||
$conn_check = ($conn) ? "Connection successful" : "Connection failed";
|
||||
}
|
||||
|
||||
/* get an array of all sensors and their values */
|
||||
function ipmi_sensors($options) {
|
||||
$cmd = "/usr/bin/ipmitool -vc sdr $options -N 1 -R 1 2>/dev/null";
|
||||
$cmd = "/usr/bin/ipmitool -vc sdr $options -N 1 -R 1 2>/dev/null"; // N seconds R retries
|
||||
exec($cmd, $output, $return);
|
||||
|
||||
if ($return)
|
||||
return [];
|
||||
return []; // return empty array if error
|
||||
|
||||
// key names for ipmitool sensor output
|
||||
$keys = ['Name','Reading','Units','Status','Entity','Location','Type','Nominal',
|
||||
'NormalMin','NormalMax','UpperNonRec','UpperCritical','UpperNonCritical','LowerNonRec',
|
||||
'LowerCritical','LowerNonCritical','MinRange','MaxRange'];
|
||||
'NormalMin','NormalMax','UpperNonRec','UpperCritical','UpperNonCrit','LowerNonRec',
|
||||
'LowerCritical','LowerNonCrit','MinRange','MaxRange'];
|
||||
|
||||
$sensors = [];
|
||||
|
||||
|
@ -54,11 +66,11 @@ function ipmi_sensors($options) {
|
|||
|
||||
/* get array of events and their values */
|
||||
function ipmi_events($options=null){
|
||||
$cmd = "/usr/bin/ipmitool -c sel elist $options -N 1 -R 1 2>/dev/null";
|
||||
$cmd = "/usr/bin/ipmitool -c sel elist $options -N 1 -R 1 2>/dev/null"; // N seconds R retries
|
||||
exec($cmd, $output, $return);
|
||||
|
||||
if ($return)
|
||||
return [];
|
||||
return []; // return empty array if error
|
||||
|
||||
// key names for ipmitool event output
|
||||
$keys = array('Event','Datestamp','Timestamp','Sensor','Description','Status');
|
||||
|
@ -76,9 +88,8 @@ function ipmi_events($options=null){
|
|||
}
|
||||
|
||||
/* get select options for a given sensor type */
|
||||
function ipmi_get_options($selected, $type, $options){
|
||||
$sensors = ipmi_sensors($options=null);
|
||||
$options = "<option value='false'>No</option>\n";
|
||||
function ipmi_get_options($sensors, $type, $selected=null){
|
||||
$options = "";
|
||||
foreach($sensors as $sensor){
|
||||
if ($sensor["Type"] == $type && $sensor["Status"] != "ns"){
|
||||
$name = $sensor["Name"];
|
||||
|
@ -88,7 +99,7 @@ function ipmi_get_options($selected, $type, $options){
|
|||
if ($selected == $name)
|
||||
$options .= " selected";
|
||||
|
||||
$options .= ">$name</option>\n";
|
||||
$options .= ">$name</option>";
|
||||
}
|
||||
}
|
||||
return $options;
|
||||
|
@ -97,23 +108,29 @@ function ipmi_get_options($selected, $type, $options){
|
|||
/* get reading for a given sensor by name */
|
||||
function ipmi_get_reading($names, $options=null) {
|
||||
$readings = [];
|
||||
$cmd = "/usr/bin/ipmitool -c sdr $options -N 1 -R 1 2>/dev/null";
|
||||
$cmd = "/usr/bin/ipmitool -c sdr $options -N 1 -R 1 2>/dev/null"; // N seconds R retries
|
||||
exec($cmd, $output, $return);
|
||||
|
||||
if ($return)
|
||||
return [];
|
||||
return []; // return empty array if error
|
||||
|
||||
for ($i = 0; $i < sizeof($names); $i++) {
|
||||
|
||||
foreach($output as $sensor){
|
||||
$sensors = explode(",", $sensor);
|
||||
foreach($output as $line){
|
||||
$sensor = explode(",", $line);
|
||||
|
||||
if ($sensors[0] == $names[$i]) // check name
|
||||
$readings[$names[$i]] = $sensors[1]; // reading
|
||||
if ($sensor[0] == $names[$i]) // check name
|
||||
$readings[$names[$i]] = $sensor[1]; // get reading by name from readings
|
||||
}
|
||||
}
|
||||
return $readings; // reading
|
||||
}
|
||||
//echo json_encode(ipmi_get_reading($sensors, $options));
|
||||
//echo json_encode(ipmi_sensors($options));
|
||||
|
||||
function ipmi_get_fans($sensors){
|
||||
foreach($sensors as $sensor){
|
||||
if ($sensor['Type'] == 'Fan' && $sensor['Status'] != 'ns')
|
||||
$fans[] = str_replace(' ', '_', $sensor['Name']);
|
||||
}
|
||||
return $fans;
|
||||
}
|
||||
?>
|
|
@ -6,7 +6,7 @@ function ipmi_temp($reading, $unit, $dot) {
|
|||
}
|
||||
|
||||
if ($cpu || $mb || $fan){
|
||||
$readings = ipmi_get_reading($sensors, $options);
|
||||
$readings = ipmi_get_reading([$cpu, $mb, $fan], $options);
|
||||
$temps = [];
|
||||
|
||||
if ($readings[$cpu])
|
||||
|
|
|
@ -58,7 +58,7 @@ $(function(){
|
|||
//sensor refresh
|
||||
function sensorRefresh() {
|
||||
sensorArray(true);
|
||||
setTimeout(sensorRefresh, 3000);
|
||||
setTimeout(sensorRefresh, 5000);
|
||||
};
|
||||
|
||||
//load ipmi sensor table
|
||||
|
@ -70,42 +70,42 @@ function sensorArray(Refresh){
|
|||
var Reading = parseFloat(data[i].Reading);
|
||||
var LowerNonRec = parseFloat(data[i].LowerNonRec);
|
||||
var LowerCritical = parseFloat(data[i].LowerCritical);
|
||||
var LowerNonCritical = parseFloat(data[i].LowerNonCritical);
|
||||
var UpperNonCritical = parseFloat(data[i].UpperNonCritical);
|
||||
var LowerNonCrit = parseFloat(data[i].LowerNonCrit);
|
||||
var UpperNonCrit = parseFloat(data[i].UpperNonCrit);
|
||||
var UpperCritical = parseFloat(data[i].UpperCritical);
|
||||
var UpperNonRec = parseFloat(data[i].UpperNonRec);
|
||||
var Color = "green";
|
||||
|
||||
// replace illegal characters
|
||||
// replace invalid characters
|
||||
var Name = data[i].Name.replace('+', 'plus_').replace('-', 'minus_').replace(' ', '_').replace('.', '_');
|
||||
|
||||
if (data[i].Type=="Voltage"){
|
||||
|
||||
// if voltage is less than lower non-critical
|
||||
// or voltage is greater than upper non-critical show orange
|
||||
if (Reading < LowerNonCritical && Reading > UpperNonCritical)
|
||||
// or voltage is greater than upper non-critical show critical
|
||||
if (Reading < LowerNonCrit && Reading > UpperNonCrit)
|
||||
Color = "orange";
|
||||
|
||||
// if voltage is less than lower critical
|
||||
// or voltage is greater than upper critical show red
|
||||
// or voltage is greater than upper critical show non-recoverable
|
||||
if (Reading < LowerCritical || Reading > UpperCritical)
|
||||
Color = "red";
|
||||
|
||||
} else if (data[i].Type=="Fan"){
|
||||
|
||||
// if Fan RPMs are less than lower non-critical
|
||||
if (Reading < LowerNonCritical || Reading < LowerCritical || Reading < LowerNonRec)
|
||||
if (Reading < LowerNonCrit || Reading < LowerCritical || Reading < LowerNonRec)
|
||||
Color = "red";
|
||||
|
||||
} else if (data[i].Type=="Temperature"){
|
||||
|
||||
// if Temperature is greater than upper non-critical
|
||||
if (Reading > UpperNonCritical || Reading > UpperCritical || Reading > UpperNonRec)
|
||||
if (Reading > UpperNonCrit || Reading > UpperCritical || Reading > UpperNonRec)
|
||||
Color = "red";
|
||||
}
|
||||
|
||||
if (Refresh) {
|
||||
$("#" + Name + " td.reading").html("<font color='" + Color + "'>" + Reading + "</font>");
|
||||
$("#" + Name + " td.reading").html("<font color='"+ Color + "'>" + Reading + "</font>");
|
||||
} else {
|
||||
$("#tblSensor tbody")
|
||||
.append("<tr id='"+Name+"'>"+
|
||||
|
@ -113,10 +113,10 @@ function sensorArray(Refresh){
|
|||
"<td>"+data[i].Name+"</td>"+ //sensor name
|
||||
"<td class='advanced'>"+ data[i].LowerNonRec +"</td>"+
|
||||
"<td class='advanced'>"+ data[i].LowerCritical +"</td>"+
|
||||
"<td class='advanced'>"+ data[i].LowerNonCritical +"</td>"+
|
||||
"<td class='reading "+ Color +"-text'>"+ Reading +"</td>"+ //sensor reading
|
||||
"<td class='advanced'>"+ data[i].LowerNonCrit +"</td>"+
|
||||
"<td class='reading'>"+ "<font color='"+ Color + "'>" + Reading + "</font></td>"+ //sensor reading
|
||||
"<td>"+data[i].Units+"</td>"+ //sensor units
|
||||
"<td class='advanced'>"+ data[i].UpperNonCritical +"</td>"+
|
||||
"<td class='advanced'>"+ data[i].UpperNonCrit +"</td>"+
|
||||
"<td class='advanced'>"+ data[i].UpperCritical +"</td>"+
|
||||
"<td class='advanced'>"+ data[i].UpperNonRec +"</td>"+
|
||||
"</tr>");
|
||||
|
@ -165,16 +165,33 @@ function eventArray(){
|
|||
};
|
||||
|
||||
function Delete(Row) {
|
||||
var Confirm = (Row == "all") ? confirm("Are your sure you want to remove all events!?"): true;
|
||||
if (Confirm){
|
||||
var Method = (Row == "all") ? "clear " : "delete ";
|
||||
var EventId = (Row == "all") ? "" : Row;
|
||||
$.getJSON("/plugins/ipmitool-plugin/include/ipmi_event_delete.php", {options: Method + EventId}, function(data) {
|
||||
if (Row == "all")
|
||||
$("#tblEvent tbody").empty(); // empty table
|
||||
else
|
||||
$('#'+Row).remove(); //remove table row
|
||||
}
|
||||
if (Row == "all"){
|
||||
swal({
|
||||
title: "Are you sure?",
|
||||
text: "Are your sure you want to remove all events!?",
|
||||
type: "warning",
|
||||
showCancelButton: true,
|
||||
closeOnConfirm: true,
|
||||
}, function() {
|
||||
$.get("/plugins/ipmitool-plugin/include/ipmi_event_delete.php", {options: "clear"}, function() {
|
||||
$("#tblEvent tbody").empty(); // empty table
|
||||
}
|
||||
);
|
||||
});
|
||||
} else {
|
||||
$.get("/plugins/ipmitool-plugin/include/ipmi_event_delete.php", {options: "delete " + Row}, function() {
|
||||
slideRow($('#'+Row)); //remove table row
|
||||
}
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
function slideRow(td) {
|
||||
td
|
||||
.children('td')
|
||||
.animate({ padding: 0 })
|
||||
.wrapInner('<div />')
|
||||
.children()
|
||||
.slideUp(function() { td.remove(); });
|
||||
$("#tblEvents").trigger("update")
|
||||
};
|
||||
|
|
|
@ -29,9 +29,9 @@ Usage: $prog [options] = start daemon
|
|||
|
||||
EOF;
|
||||
|
||||
$shortopts = "cquv";
|
||||
$shortopts = "bc:dqv";
|
||||
$longopts = [
|
||||
"cron",
|
||||
"cron:",
|
||||
"debug",
|
||||
"help",
|
||||
"quiet",
|
||||
|
@ -51,23 +51,23 @@ if (array_key_exists("version", $args)) {
|
|||
exit(1);
|
||||
}
|
||||
|
||||
$argcr = (array_key_exists("c", $args) || array_key_exists("cron", $args));
|
||||
$argd = (array_key_exists("d", $args) || array_key_exists("debug", $args));
|
||||
$argq = (array_key_exists("q", $args) || array_key_exists("quit", $args));
|
||||
$argu = (array_key_exists("u", $args) || array_key_exists("uninstall", $args));
|
||||
$cron = (array_key_exists("c", $args) || array_key_exists("cron", $args));
|
||||
$DEBUG = (array_key_exists("d", $args) || array_key_exists("debug", $args));
|
||||
$quit = (array_key_exists("q", $args) || array_key_exists("quit", $args));
|
||||
$background = (array_key_exists("b", $args) || array_key_exists("background", $args));
|
||||
$argv = (array_key_exists("v", $args) || array_key_exists("verbose", $args));
|
||||
|
||||
// ipmitool raw 0x3a 0x01 0xAA 0xBB 0xCC 0xDD 0xEE 0xFF 0xGG 0xHH
|
||||
//ipmitool raw 0x3a 0x01 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
|
||||
// 0x00 = smartfan mode
|
||||
// 0x01 - 0x64 = 1% - 100%
|
||||
$asrock_array = [
|
||||
'CPU_FAN1' => 'AA',
|
||||
'CPU_FAN2' => 'BB',
|
||||
'REAR_FAN1' => 'CC',
|
||||
'REAR_FAN2' => 'DD',
|
||||
'FRNT_FAN1' => 'EE',
|
||||
'FRNT_FAN2' => 'FF'
|
||||
$asrock = [
|
||||
'CPU_FAN1' => 'AA',
|
||||
'CPU_FAN2' => 'BB',
|
||||
'REAR_FAN1' => 'CC',
|
||||
'REAR_FAN2' => 'DD',
|
||||
'FRNT_FAN1' => 'EE',
|
||||
'FRNT_FAN2' => 'FF'
|
||||
];
|
||||
|
||||
function debug($m){
|
||||
|
@ -79,7 +79,7 @@ function debug($m){
|
|||
}
|
||||
}
|
||||
|
||||
$background_args = "";
|
||||
/*$background_args = "";
|
||||
if(isset($argv)){
|
||||
for ($i=0; $i <= count($argv); $i++) {
|
||||
switch ($argv[$i]) {
|
||||
|
@ -94,20 +94,15 @@ if(isset($argv)){
|
|||
$DEBUG = TRUE;
|
||||
$background_args .= " ${argv[$i]}";
|
||||
break;
|
||||
case '-h':
|
||||
case '--help':
|
||||
echo $usage;
|
||||
exit(0);
|
||||
# Especific switches:
|
||||
}
|
||||
}
|
||||
}
|
||||
}*/
|
||||
|
||||
# Deal with cron
|
||||
if ($cron) && is_numeric($cron) && !$argq){
|
||||
if ($cron) && is_numeric($cron) && !$quit){
|
||||
exec("crontab -l 2>/dev/null", $crontab);
|
||||
$crontab = array_unique($crontab);
|
||||
if (!$argq){
|
||||
if (!$quit){
|
||||
$entry = sprintf("*/%s * * * * ${service}${background_args} 1> /dev/null 2>&1", $cron);
|
||||
if (! preg_grep("#${service}#", $crontab)){
|
||||
$crontab[] = $entry;
|
||||
|
@ -118,7 +113,7 @@ if ($cron) && is_numeric($cron) && !$argq){
|
|||
}
|
||||
}
|
||||
unset($crontab);
|
||||
} else if ($argq){
|
||||
} else if ($quit){
|
||||
exec("crontab -l 2>/dev/null", $crontab);
|
||||
$crontab = array_unique($crontab);
|
||||
if (preg_grep("#${service}#", $crontab)){
|
||||
|
@ -133,9 +128,9 @@ if ($cron) && is_numeric($cron) && !$argq){
|
|||
|
||||
if (is_file($lockfile)){
|
||||
$lock_pid = file($lockfile, FILE_IGNORE_NEW_LINES)[0];
|
||||
$pid_running=preg_replace("/\s+/", "", shell_exec("ps -p ${lock_pid}| grep ${lock_pid}"));
|
||||
if (!$pid_running){
|
||||
if (!$argq){
|
||||
$pid = preg_replace("/\s+/", "", shell_exec("ps -p ${lock_pid}| grep ${lock_pid}"));
|
||||
if (!$pid){
|
||||
if (!$quit){
|
||||
file_put_contents($lockfile, getmypid());
|
||||
} else {
|
||||
echo "$lock_pid is not currently running";
|
||||
|
@ -143,19 +138,19 @@ if (is_file($lockfile)){
|
|||
exit(0);
|
||||
}
|
||||
} else {
|
||||
if ($argq){
|
||||
syslog(LOG_INFO, "killing daemon with PID [${lock_pid}]");
|
||||
if ($quit){
|
||||
syslog(LOG_INFO, "killing daemon with PID [$lock_pid]");
|
||||
exec("kill $lock_pid");
|
||||
unlink($lockfile);
|
||||
if (function_exists('at_exit')) at_exit();
|
||||
exit(0);
|
||||
} else {
|
||||
echo "$prog is already running [${lock_pid}]".PHP_EOL;
|
||||
echo "$prog is already running [$lock_pid]".PHP_EOL;
|
||||
exit(0);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if($argq){
|
||||
if($quit){
|
||||
echo "$prog not currently running".PHP_EOL;
|
||||
exit(0);
|
||||
} else {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
prog="ipmievd: "
|
||||
|
||||
DAEMON="ipmievd: "
|
||||
LASTMSG="Waiting for events"
|
||||
exec /usr/bin/tail -n 0 -F /var/log/syslog | \
|
||||
|
||||
while read LINE;
|
||||
|
@ -14,7 +14,8 @@ do
|
|||
[[ "$LINE" == *"Get SEL Info command failed"* ]] && continue
|
||||
|
||||
# only notify when ipmievd: is in the system log
|
||||
[[ "$LINE" != *$prog* ]] && continue
|
||||
[[ "$LINE" != *$DAEMON* ]] && continue
|
||||
MESSAGE=$(echo "$LINE" | sed -e 's/.*$DAEMON//')
|
||||
sleep 1 |
|
||||
exec /usr/local/emhttp/webGui/scripts/notify -s "Notice [$HOSTNAME]" -d "$(echo "$LINE" | sed -e 's/.*$prog//')" -i "warning" && continue 2
|
||||
exec /usr/local/emhttp/webGui/scripts/notify -s "Notice [$HOSTNAME]" -d "$MESSAGE" -i "warning" && continue 2
|
||||
done
|
|
@ -1,17 +1,15 @@
|
|||
#!/bin/sh
|
||||
# read our configuration
|
||||
prog="ipmievd"
|
||||
prog2="ipmitail"
|
||||
IPMIEVD="/usr/sbin/$prog"
|
||||
IPMITAIL="/usr/local/emhttp/plugins/ipmitool-plugin/scripts/$prog2"
|
||||
LOCKFILE="/var/lock/$prog"
|
||||
PIDFILE="/var/run/$prog.pid0"
|
||||
DAEMON="/usr/sbin/ipmievd"
|
||||
IPMITAIL="/usr/local/emhttp/plugins/ipmitool-plugin/scripts/ipmitail"
|
||||
LOCKFILE="/var/lock/ipmievd"
|
||||
PIDFILE="/var/run/ipmievd.pid0"
|
||||
CONFIG="/boot/config/plugins/ipmitool-plugin/ipmitool-plugin.cfg"
|
||||
OPTIONS=""
|
||||
|
||||
if [ -e $CONFIG ]; then
|
||||
source $CONFIG
|
||||
if [ $SERVICE == "enable" ]; then
|
||||
if [ $IPMIEVD == "enable" ]; then
|
||||
# no-op if already running
|
||||
if [ ! -r $PIDFILE ]; then
|
||||
if [ $REMOTE == "enable" ]; then
|
||||
|
@ -19,7 +17,7 @@ if [ -e $CONFIG ]; then
|
|||
fi
|
||||
sleep 1
|
||||
|
||||
nohup $IPMIEVD sel $OPTIONS > /dev/null 2>&1 | logger -tipmitool &
|
||||
nohup $DAEMON sel $OPTIONS > /dev/null 2>&1 | logger -tipmitool &
|
||||
touch $LOCKFILE
|
||||
TIMER=0
|
||||
while [ ! -e $PIDFILE ]; do
|
||||
|
|
|
@ -1,27 +1,27 @@
|
|||
#!/bin/sh
|
||||
prog="ipmievd"
|
||||
prog2="ipmitail"
|
||||
LOCKFILE="/var/lock/$prog"
|
||||
PIDFILE="/var/run/$prog.pid0"
|
||||
DAEMON="ipmievd"
|
||||
TAIL="ipmitail"
|
||||
LOCKFILE="/var/lock/$DAEMON"
|
||||
PIDFILE="/var/run/$DAEMON.pid0"
|
||||
|
||||
# no-op if not running
|
||||
if [ -r $PIDFILE ]; then
|
||||
TIMER=0
|
||||
while `killall $prog 2>/dev/null`; do
|
||||
while `killall $DAEMON 2>/dev/null`; do
|
||||
sleep 1
|
||||
TIMER=$((TIMER+1))
|
||||
if [ $TIMER -ge 30 ]; then
|
||||
killall -9 $prog
|
||||
killall -9 $DAEMON
|
||||
sleep 1
|
||||
break
|
||||
fi
|
||||
done
|
||||
TIMER=0
|
||||
while `killall $prog2 2>/dev/null`; do
|
||||
while `killall $TAIL 2>/dev/null`; do
|
||||
sleep 1
|
||||
TIMER=$((TIMER+1))
|
||||
if [ $TIMER -ge 30 ]; then
|
||||
killall -9 $prog2
|
||||
killall -9 $TAIL
|
||||
sleep 1
|
||||
break
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue
Block a user