mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
59 lines
2.1 KiB
PHP
59 lines
2.1 KiB
PHP
<?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
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* @package LibreNMS
|
|
* @link https://www.librenms.org
|
|
* @copyright 2020 Tony Murray
|
|
* @author Tony Murray <murraytony@gmail.com>
|
|
*/
|
|
|
|
namespace LibreNMS\Validations;
|
|
|
|
use LibreNMS\Config;
|
|
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) && ! Config::get('installed_from_package')) {
|
|
$validator->warn('Global lnms shortcut not installed. lnms command must be run with full path', "sudo ln -s $install_dir/lnms /usr/bin/lnms");
|
|
}
|
|
|
|
$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) && ! Config::get('installed_from_package')) {
|
|
$validator->warn('Log rotation not enabled, could cause disk space issues', "sudo cp $install_dir/misc/librenms.logrotate $rotation_file");
|
|
}
|
|
}
|
|
}
|