HEX
Server: Apache
System: Linux nc-ph-0707-26.instaforreviews.com 3.10.0-1160.119.1.el7.tuxcare.els13.x86_64 #1 SMP Fri Nov 22 06:29:45 UTC 2024 x86_64
User: qirgxuo4hkuv (1004)
PHP: 8.3.27
Disabled: NONE
Upload Files
File: //etc/cron.daily/imunify360.cron
#!/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()
{
    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