| Server IP : 101.53.144.229 / Your IP : 216.73.216.181 Web Server : Apache System : Linux host.gdigitalindia.in 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : digitalshiksha ( 1179) PHP Version : 5.6.40 Disable Function : eval,show_source,system,shell_exec,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,dl,show_source,curl_multi_exechellcmd, ini_restore,apache_get_modules,get_cfg_var,passthru, exec ,proc_get_status,fpassthru,c999_buff_prepare,c999_sess_put,c99_buff_prepare,c99_sess_put,proc_close,ini_alter,dl,symlink,link,proc_close,ini_alter,dl,symlink,link,mail MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /etc/cron.daily/ |
Upload File : |
#!/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}
sh_update_call=${2:-no} # Skips check-domains call and returns return code
main()
{
/usr/libexec/report-command-error /opt/imunify360/venv/bin/python3 /opt/imunify360/venv/share/imunify360/scripts/delay_on_cron_call.py
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)"
if [ "$sh_update_call" = "no" ]; then
/usr/bin/imunify360-agent check-domains
echo "imunify360-agent check-domains RC: $?"
fi
PACKAGES="imunify-antivirus \
ai-bolit \
alt-common-release \
alt-php-hyperscan \
imunify-release \
imunify-common \
imunify-notifier \
imunify-core \
imunify-realtime-av \
imunify-ui \
imunify360-venv \
minidaemon \
alt-php-internal \
app-version-detector"
/usr/libexec/report-command-error /usr/bin/yum update --assumeyes $PACKAGES
UPDATE_RC=$?
echo "yum update RC after: $UPDATE_RC"
# do not try to update the package if it is not installed
echo "Checking if imunify-patchman is installed"
if rpm -qi imunify-patchman; then
# do not update obsoleted packages by default
/usr/libexec/report-command-error /usr/bin/yum update --setopt=obsoletes=0 --assumeyes imunify-patchman
UPDATE_RC=$(( $UPDATE_RC + $? ))
echo "yum update imunify-patchman RC after: $UPDATE_RC"
fi
/usr/bin/imunify-antivirus version
echo "Finished daily imunify-antivirus cron jobs at $(date)"
if [ "$sh_update_call" = "yes" ]; then
exit $UPDATE_RC
fi
}
main >> "$log" 2>&1