1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-25 10:28:36 +00:00

Fix spelling mistakes in comments and descriptions

Thanks, codespell!
This commit is contained in:
Lars Kruse 2020-03-26 02:12:57 +01:00
parent 561da1a3f1
commit 8713eb3722
162 changed files with 248 additions and 248 deletions

View file

@ -8,7 +8,7 @@ if [ "$1" = 'config' ]; then
echo "graph_title Serveur FTP"
echo "graph_category network"
echo "graph_vlabel Stats Proftpd"
echo "succes.label Login succes"
echo "succes.label Login success"
echo "succes.draw AREA"
echo "failed.label Login failed"
echo "failed.draw AREA"
@ -16,10 +16,10 @@ fi
LOGFILE=${LOGFILE:-"/var/log/proftpd/proftpd.log"}
succes=$(grep -c "successful" "$LOGFILE" )
success=$(grep -c "successful" "$LOGFILE")
failed=$(grep -c "Login failed" "$LOGFILE" )
echo "succes.value $succes"
echo "succes.value $success"
echo "failed.value $failed"
exit 0