Remove traceroute6, it is unused (#14019)

* Remove traceroute6, it is unused
LibreNMS just uses traceroute -6, which is supported on all supported OS, and then some.

* missed some items
This commit is contained in:
Tony Murray
2022-06-08 01:52:33 -05:00
committed by GitHub
parent 30da27256b
commit a63166dd0e
10 changed files with 2 additions and 31 deletions

View File

@@ -458,7 +458,7 @@ class Config
}
// make sure we have full path to binaries in case PATH isn't set
foreach (['fping', 'fping6', 'snmpgetnext', 'rrdtool', 'traceroute', 'traceroute6'] as $bin) {
foreach (['fping', 'fping6', 'snmpgetnext', 'rrdtool', 'traceroute'] as $bin) {
if (! is_executable(self::get($bin))) {
self::persist($bin, self::locateBinary($bin));
}