summaryrefslogtreecommitdiff
path: root/src/conf_mode/qos.py
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-04-01 20:38:56 +0200
committerChristian Breunig <christian@breunig.cc>2024-04-01 20:38:56 +0200
commit5bb27f0c6220fd940b63cdd37a60c312c0ac3efd (patch)
tree3908e55564363e97d6d62bcc9dc4ba9dcba82457 /src/conf_mode/qos.py
parent32d6a693de99021d2cd44fb4235e929caf7b4a6d (diff)
downloadvyos-1x-5bb27f0c6220fd940b63cdd37a60c312c0ac3efd.tar.gz
vyos-1x-5bb27f0c6220fd940b63cdd37a60c312c0ac3efd.zip
utils: T5738: always use vyos.utils.network.interface_exists over os.path.exists
Diffstat (limited to 'src/conf_mode/qos.py')
-rwxr-xr-xsrc/conf_mode/qos.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/conf_mode/qos.py b/src/conf_mode/qos.py
index 4a0b4d0c5..2b4fcc1bf 100755
--- a/src/conf_mode/qos.py
+++ b/src/conf_mode/qos.py
@@ -36,8 +36,9 @@ from vyos.qos import RateLimiter
from vyos.qos import RoundRobin
from vyos.qos import TrafficShaper
from vyos.qos import TrafficShaperHFSC
-from vyos.utils.process import run
from vyos.utils.dict import dict_search_recursive
+from vyos.utils.network import interface_exists
+from vyos.utils.process import run
from vyos import ConfigError
from vyos import airbag
airbag.enable()
@@ -214,7 +215,7 @@ def apply(qos):
return None
for interface, interface_config in qos['interface'].items():
- if not os.path.exists(f'/sys/class/net/{interface}'):
+ if not interface_exists(interface):
# When shaper is bound to a dialup (e.g. PPPoE) interface it is
# possible that it is yet not availbale when to QoS code runs.
# Skip the configuration and inform the user