diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-02-18 08:44:05 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-02-18 08:44:47 +0100 |
commit | f67568bc2307706116f5509fca3a188dc4ab5d48 (patch) | |
tree | a0844709b87dd9b0d74d3be177c13ddb939edfc3 /src/validators | |
parent | 83bcd13775323bec35d018223029e9a8b13179c8 (diff) | |
download | vyos-1x-f67568bc2307706116f5509fca3a188dc4ab5d48.tar.gz vyos-1x-f67568bc2307706116f5509fca3a188dc4ab5d48.zip |
validator: T3326: add missing interfaces (e.g. ppp and l2tpv3)
Diffstat (limited to 'src/validators')
-rwxr-xr-x | src/validators/interface-name | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/validators/interface-name b/src/validators/interface-name index 32cd42fbd..8e337b401 100755 --- a/src/validators/interface-name +++ b/src/validators/interface-name @@ -17,7 +17,7 @@ import re import sys -pattern = '^(br|bond|dum|en|eth|gnv|peth|pppoe|tun|vti|vtun|vxlan|wg|wlan)[0-9]+|lo$' +pattern = '^(bond|br|dum|en|ersp|eth|gnv|lan|l2tp|l2tpeth|macsec|peth|ppp|pppoe|pptp|sstp|tun|vti|vtun|vxlan|wg|wlan|wlm)[0-9]+|lo$' if __name__ == '__main__': if len(sys.argv) != 2: |