]> ##&name; ### 2020-07-16 - Package based installation process. - Added a zabbix template file. ### 2020-07-15 - More metrics ### 2020-07-14 - Initial commit echo "Installation of zabbix_agent plugin started." if [ -e /boot/config/plugins/zabbix_agent/&packageName; ]; then echo "Package already exists." else echo "Current &packageName; not found; removing old packages (if existing)." rm /boot/config/plugins/zabbix_agent/*.package.tgz echo "Downloading current package..." fi &packageURL; &packageMD5; if [ -x /etc/rc.d/rc.zabbix_agentd ]; then echo "Stopping old zabbix agent..." /etc/rc.d/rc.zabbix_agentd stop fi echo "Extracting support files..." tar -xzvf /boot/config/plugins/zabbix_agent/&packageName; --strip=1 -C / /etc/rc.d/rc.zabbix_agentd start echo "Removal of zabbix_agent plugin started." echo "Stopping zabbix_agentd..." /etc/rc.d/rc.zabbix_agentd stop echo "Deleting /usr/sbin/zabbix_agentd..." rm /usr/sbin/zabbix_agentd echo "Deleting /etc/rc.d/rc.zabbix_agentd..." rm /etc/rc.d/rc.zabbix_agentd echo "Deleting /boot/config/plugins/zabbix_agent/..." rm -rf /boot/config/plugins/zabbix_agent/ echo "Deleting /usr/local/emhttp/plugins/zabbix_agent/..." rm -rf /usr/local/emhttp/plugins/zabbix_agent/ echo "Removal of zabbix_agent plugin completed."