2020-11-23 09:46:22 -06:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* System.php
|
|
|
|
*
|
|
|
|
* Validate system items
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2021-02-09 00:29:04 +01:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2020-11-23 09:46:22 -06:00
|
|
|
*
|
|
|
|
* @package LibreNMS
|
2021-02-09 00:29:04 +01:00
|
|
|
* @link https://www.librenms.org
|
2020-11-23 09:46:22 -06:00
|
|
|
* @copyright 2020 Tony Murray
|
|
|
|
* @author Tony Murray <murraytony@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace LibreNMS\Validations;
|
|
|
|
|
|
|
|
use LibreNMS\Validator;
|
|
|
|
|
|
|
|
class System extends BaseValidation
|
|
|
|
{
|
|
|
|
protected static $RUN_BY_DEFAULT = true;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function validate(Validator $validator)
|
|
|
|
{
|
|
|
|
$install_dir = $validator->getBaseDir();
|
|
|
|
|
|
|
|
$lnms = `which lnms 2>/dev/null`;
|
|
|
|
if (empty($lnms)) {
|
2021-01-19 20:37:28 -06:00
|
|
|
$validator->warn('Global lnms shortcut not installed. lnms command must be run with full path', "sudo ln -s $install_dir/lnms /usr/bin/lnms");
|
2020-11-23 09:46:22 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
$bash_completion_dir = '/etc/bash_completion.d/';
|
|
|
|
$completion_file = 'lnms-completion.bash';
|
|
|
|
if (is_dir($bash_completion_dir) && ! file_exists("$bash_completion_dir$completion_file")) {
|
|
|
|
$validator->warn('Bash completion not installed. lnms command tab completion unavailable.', "sudo cp $install_dir/misc/lnms-completion.bash $bash_completion_dir");
|
|
|
|
}
|
|
|
|
|
|
|
|
$rotation_file = '/etc/logrotate.d/librenms';
|
|
|
|
if (! file_exists($rotation_file)) {
|
|
|
|
$validator->warn('Log rotation not enabled, could cause disk space issues', "sudo cp $install_dir/misc/librenms.logrotate $rotation_file");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|