Skip to content

Commit

Permalink
Merge pull request #9869 from cppmonkey/RRD-Warning
Browse files Browse the repository at this point in the history
Fixed validator for rrd folder permissions
  • Loading branch information
TheGreatDoc committed Feb 24, 2019
2 parents 96d65d1 + fd2bd62 commit 48ed665
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LibreNMS/Validations/Rrd.php
Expand Up @@ -63,7 +63,7 @@ public function validate(Validator $validator)
}

if (substr(sprintf('%o', fileperms($rrd_dir)), -3) != 775) {
$validator->warn('Your RRD directory is not set to 0775', "chmod 775 $rrd_dir}");
$validator->warn('Your RRD directory is not set to 0775', "chmod 775 $rrd_dir");
}
}
}
Expand Down

0 comments on commit 48ed665

Please sign in to comment.