Files
librenms-librenms/LibreNMS/Validations/Rrd/CheckRrdDirPermissions.php
Tony Murray 7a0d604cdd Automatic fixes for validation failures (#13930)
* Automatic fixes for validations

* webui

* lint fixes

* Fix an install issue with ConfigSeeder requesting cli input in web page.

* Do not use c_echo in validate.php print_fail()
2022-06-10 16:25:33 -05:00

63 lines
1.9 KiB
PHP

<?php
/*
* CheckRrddirPermissions.php
*
* -Description-
*
* 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 <http://www.gnu.org/licenses/>.
*
* @package LibreNMS
* @link http://librenms.org
* @copyright 2022 Tony Murray
* @author Tony Murray <murraytony@gmail.com>
*/
namespace LibreNMS\Validations\Rrd;
use LibreNMS\Config;
use LibreNMS\Interfaces\Validation;
use LibreNMS\ValidationResult;
class CheckRrdDirPermissions implements Validation
{
/**
* @inheritDoc
*/
public function validate(): ValidationResult
{
$rrd_dir = Config::get('rrd_dir');
$dir_stat = stat($rrd_dir);
if ($dir_stat[4] == 0 || $dir_stat[5] == 0) {
return ValidationResult::warn(trans('validation.validations.rrd.CheckRrdDirPermissions.fail_root'),
sprintf('chown %s:%s %s', Config::get('user'), Config::get('group'), $rrd_dir)
);
}
if (substr(sprintf('%o', fileperms($rrd_dir)), -3) != 775) {
return ValidationResult::warn(trans('validation.validations.rrd.CheckRrdDirPermissions.fail_mode'), "chmod 775 $rrd_dir");
}
return ValidationResult::ok(trans('validation.validations.rrd.CheckRrdDirPermissions.ok'));
}
/**
* @inheritDoc
*/
public function enabled(): bool
{
return ! Config::get('rrdcached');
}
}