Integrate UISP import (optional)

This commit is contained in:
Robert Chacón 2022-09-08 20:53:17 -06:00 committed by GitHub
parent 360c0a0485
commit 0dfc0fe0fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,9 +3,12 @@ import schedule
from LibreQoS import refreshShapers
from graphBandwidth import refreshBandwidthGraphs
from graphLatency import refreshLatencyGraphs
from ispConfig import bandwidthGraphingEnabled, latencyGraphingEnabled
from ispConfig import bandwidthGraphingEnabled, latencyGraphingEnabled, automaticImportUISP
from integrationUISP import importFromUISP
def importandshape():
if automaticImportUISP:
importFromUISP()
refreshShapers()
if __name__ == '__main__':