1diff --git a/LibreNMS/Config.php b/LibreNMS/Config.php
2index 5ed6b71..de7718a 100644
3--- a/LibreNMS/Config.php
4+++ b/LibreNMS/Config.php
5@@ -460,13 +460,6 @@ class Config
6 self::persist('device_display_default', $display_value);
7 }
8
9- // make sure we have full path to binaries in case PATH isn't set
10- foreach (['fping', 'fping6', 'snmpgetnext', 'rrdtool', 'traceroute'] as $bin) {
11- if (! is_executable(self::get($bin))) {
12- self::persist($bin, self::locateBinary($bin));
13- }
14- }
15-
16 if (! self::has('rrdtool_version')) {
17 self::persist('rrdtool_version', Rrd::version());
18 }