| Server IP : 198.38.94.67 / Your IP : 216.73.217.142 Web Server : LiteSpeed System : Linux d6054.dxb1.stableserver.net 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64 User : azfilmst ( 1070) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/usr/lib64/nagios/plugins/ |
Upload File : |
#!/bin/bash
# Ref - SYSENG-27632 - Monitor mount /app/vz_templates, try to mount only once and alert if fails
#
# Ref - SYSENG-27632 - skip check if it is a VZBK server.
if [[ $(hostname) =~ vzbk ]]; then
exit
fi
# if mount status is good just confirm and clean up /var/tmp/mount_vz_template_file file
if df -T /app/vz_templates | grep -q nfs;then
echo "check_vz7_templates_mount - /app/vz_templates is mounted"
if [ -e "/var/tmp/mount_vz_template_file" ]; then
rm -f /var/tmp/mount_vz_template_file
fi
exit 0
else
# try to mount with timeout to prevent break check_mk, then check mount status and update alert as needed
timeout 5 mount /app/vz_templates >/dev/null
if df -T /app/vz_templates | grep -q nfs;then
echo "check_vz7_templates_mount - /app/vz_templates is mounted"
exit 0
else
echo "check_vz7_templates_mount - Attempted to mount /app/vz_templates and its still unmounted"
exit 2
fi
fi