Package: nagios-plugins Version: 1.5-3 Severity: normal
Issue ----- # /usr/lib/nagios/plugins/check_fping -6 -H ::1 FPING UNKNOW - ::1 not found Where is the bug ? ------------------ >From check_fping.c --- #ifdef PATH_TO_FPING6 if (address_family == AF_INET6) fping_prog = strdup(PATH_TO_FPING6); else fping_prog = strdup(PATH_TO_FPING); #else fping_prog = strdup(PATH_TO_FPING); #endif --- If PATH_TO_FPING6 is not defined its fail to fping. How fix the issue ? ------------------- Rebuild nagios-plugins package with --with-fping6-command. This will define PATH_TO_FPING6 and so check_fping will call fping6 instead of fping for IPv6 address. -- Nicolas DEFFAYET -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org