grep can count occurrences too

This commit is contained in:
Jérémy Lecour 2019-03-21 23:56:12 +01:00
parent ae12b37c7f
commit 0fc9d0921e

View file

@ -372,7 +372,8 @@ if is_debian; then
fi
if [ "$IS_CUSTOMCRONTAB" = 1 ]; then
grep -E "^(17 \*|25 6|47 6|52 6)" /etc/crontab | wc -l | grep -q ^4$ && failed "IS_CUSTOMCRONTAB"
found_lines=$(grep -c -E "^(17 \*|25 6|47 6|52 6)" /etc/crontab)
test "$found_lines" = "4" && failed "IS_CUSTOMCRONTAB"
fi
if [ "$IS_SSHALLOWUSERS" = 1 ]; then