mirror of
https://github.com/LibreQoE/LibreQoS.git
synced 2025-02-25 18:55:32 -06:00
Temporary: mark --updateonly as unavailable if OnAStick
The partial reload mechanism *really* doesn't work with OnAStick configurations at present. There's a lot of work required to make it function. In the meantime, warn the poor user that this isn't going to work. Affects ISSUE #129
This commit is contained in:
parent
e7d7429058
commit
da44d38888
@ -1332,6 +1332,10 @@ if __name__ == '__main__':
|
||||
elif args.clearrules:
|
||||
tearDown(interfaceA, interfaceB)
|
||||
elif args.updateonly:
|
||||
# Single-interface updates don't work at all right now.
|
||||
if OnAStick:
|
||||
print("--updateonly is not supported for single-interface configurations")
|
||||
os.exit(-1)
|
||||
refreshShapersUpdateOnly()
|
||||
else:
|
||||
# Refresh and/or set up queues
|
||||
|
Loading…
Reference in New Issue
Block a user