fix(clamav): fix typo in cron (#2586)

This commit is contained in:
Stavros Kois 2022-04-29 18:15:42 +03:00 committed by GitHub
parent d138598a4f
commit 42a14a263c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@ sources:
- https://hub.docker.com/r/clamav/clamav
- https://docs.clamav.net/
type: application
version: 2.1.10
version: 2.1.11
annotations:
truecharts.org/catagories: |
- utilities

View File

@ -65,11 +65,11 @@ spec:
then
echo "Exit Status: $status";
echo "No Virus found!";
elif [ $status -eq 1];
elif [ $status -eq 1 ];
then
echo "Exit Status: $status.";
echo "Virus(es) found. Check \"${log_file}\".";
elif [ $status -eq 2];
elif [ $status -eq 2 ];
then
echo "Exit Status: $status.";
echo "Some error(s) occured.";