Server : Apache System : Linux server1.cgrithy.com 3.10.0-1160.95.1.el7.x86_64 #1 SMP Mon Jul 24 13:59:37 UTC 2023 x86_64 User : nobody ( 99) PHP Version : 8.1.23 Disable Function : NONE Directory : /etc/cron.daily/ |
#!/bin/bash # # imunify-antivirus daily cron jobs. # # Usage: # ./imunify-antivirus.cron [<logfile>] # # if logfile is not specified, the output will be discarded # If imunify360-firewall is installed, doing nothing log=${1:-/dev/null} main() { echo "Checking if imunify360-firewall is installed" if rpm -qi imunify360-firewall; then echo "Imunify360-installed, skipping antivirus cron" exit 0 fi echo "Starting daily imunify-antivirus cron jobs at $(date)" /usr/bin/imunify360-agent check-domains PACKAGES="imunify-antivirus \ ai-bolit \ imunify-common \ imunify-notifier \ imunify360-venv \ imunify-core \ imunify-ui" /usr/libexec/report-command-error /usr/bin/yum update --assumeyes $PACKAGES /usr/bin/imunify-antivirus version echo "Finished daily imunify-antivirus cron jobs at $(date)" } main >> "$log" 2>&1