Skip to content

Commit

Permalink
fix: removed curly bracket from end of the command
Browse files Browse the repository at this point in the history
  • Loading branch information
cppmonkey committed Feb 24, 2019
1 parent 96d65d1 commit fd2bd62
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 fd2bd62

Please sign in to comment.