| .. | |||||
| eset_efs_report_statistics |
| Server IP : 103.169.32.36 / Your IP : 216.73.216.187 Web Server : Apache System : Linux web.dpmptsp 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : apache ( 48) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /etc/cron.monthly/ |
Upload File : |
#! /bin/sh
set -e
# Must be run under root user.
if [ "$(id -u)" -ne 0 ]; then
exit 0
fi
PROVIDER="eset"
# Find security product
if [ -f "/opt/${PROVIDER}/eea/etc/pkgid" ]; then
PRODUCT="eea"
CFG_LOCATION="lib"
elif [ -f "/opt/${PROVIDER}/efs/etc/pkgid" ]; then
PRODUCT="efs"
CFG_LOCATION="sbin"
else
exit 0
fi
# paths
PRODUCT_PATH="${PROVIDER}/${PRODUCT}"
INSTALL_PATH="/opt/${PRODUCT_PATH}"
CFG_PATH="${INSTALL_PATH}/${CFG_LOCATION}/cfg"
test -x "${CFG_PATH}" || exit 0
"${CFG_PATH}" --send-cfg-stats
| .. | |||||
| eset_efs_report_statistics |