parse lldp only if configuration says so #63

Merged
Solvik merged 1 commit from lldp_fix into master 2019-09-09 12:25:11 +02:00
Showing only changes of commit c452738698 - Show all commits

View file

@ -46,7 +46,7 @@ class Network():
self.server = server
self.device = self.server.get_netbox_server()
self.lldp = LLDP()
self.lldp = LLDP() if config.network.lldp else None
self.scan()
def scan(self):