From fd2bd62f579c7a64b17de361fd1fabed7662a4c8 Mon Sep 17 00:00:00 2001 From: Paul Parsons Date: Sun, 24 Feb 2019 21:20:17 +0000 Subject: [PATCH] fix: removed curly bracket from end of the command --- LibreNMS/Validations/Rrd.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LibreNMS/Validations/Rrd.php b/LibreNMS/Validations/Rrd.php index 0198493db816..4b9aad9f40bd 100644 --- a/LibreNMS/Validations/Rrd.php +++ b/LibreNMS/Validations/Rrd.php @@ -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"); } } }