Server IP : 184.154.167.98 / Your IP : 18.220.255.227 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /etc/cron.daily/ |
Upload File : |
#!/bin/bash # # imunify360 daily cron jobs. # # Usage: # ./imunify360.cron [<logfile>] # # if logfile is not specified, the output will be discarded log=${1:-/dev/null} main() { /usr/libexec/report-command-error /opt/imunify360/venv/bin/python3 /opt/imunify360/venv/share/imunify360/scripts/delay_on_cron_call.py echo "Starting daily imunify360 cron jobs at $(date)" /usr/bin/imunify360-agent check-domains PACKAGES="imunify360-firewall \ ai-bolit \ alt-php-hyperscan \ imunify-common \ imunify-notifier \ imunify-core \ imunify-ui \ imunify360-venv \ imunify-antivirus \ cloudlinux-backup-utils \ imunify-realtime-av \ imunify360-ossec \ imunify360-pam \ imunify360-php-i360 \ imunify360-webshield-bundle \ imunify360-unified-access-logger \ imunify-auditd-log-reader \ minidaemon \ alt-php-internal \ app-version-detector" /usr/libexec/report-command-error /usr/bin/yum update --assumeyes $PACKAGES echo "Finished daily imunify360 cron jobs at $(date)" } main >> "$log" 2>&1