/opt/imunify360/venv/share/imunify360/scripts
NameSizeModeActions
migrate_csf/-0755rm
__pycache__/-0755rm
check-detached.py11410755editdlrm
create_default_config12630755editdlrm
delay_on_cron_call.py11490755editdlrm
imunify-check-pkg-integrity61920755editdlrm
imunify-core-release4150700editdlrm
imunify-disable-cpu-accounting.sh10200744editdlrm
imunify-doctor.sh269520744editdlrm
imunify-force-update.sh83450744editdlrm
imunify_core_release.py222740644editdlrm
purge-clamav5350755editdlrm
send-notifications78884770editdlrm
setup_cagefs.py45830700editdlrm
track-fpfn-submissions.sh38920755editdlrm
update_components_versions.py42090755editdlrm
Edit: /opt/imunify360/venv/share/imunify360/scripts/purge-clamav (535B)
#!/bin/bash set -x im360_clamav=$(yum list installed | grep imunify360 | grep clamav | awk '{print $1}') installed_epel=0 if [ -n "${im360_clamav}" ]; then if [ ! -f /etc/yum.repos.d/epel.repo ] && ! yum repolist all | grep 'epel/'; then yum -y install epel-release installed_epel=1 fi yum -y downgrade --enablerepo=epel ${im360_clamav} if [ $installed_epel = 1 ]; then yum -y remove epel-release fi fi touch /var/imunify360/tmp/clamav_purged rm -f /etc/cron.d/imunify360-purge-clamav