diff options
author | Daniil Baturin <daniil@vyos.io> | 2022-09-15 15:07:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-15 15:07:40 +0100 |
commit | e57146723fd791d71ac9659f9247a8827c151c97 (patch) | |
tree | c75c86280700659da8eb2b53eaa8fdf7d3406b62 /python | |
parent | b9678136eac767ece3d5a5e53f9f2b9c47c7477a (diff) | |
parent | 3629f376c26bbc22b94fbd5e9bbe789d08e2caa6 (diff) | |
download | vyos-1x-e57146723fd791d71ac9659f9247a8827c151c97.tar.gz vyos-1x-e57146723fd791d71ac9659f9247a8827c151c97.zip |
Merge pull request #1539 from sever-sever/T4679-eq
openvpn: T4679: Fix incorrect verify local and remote address 1.3
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/util.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/python/vyos/util.py b/python/vyos/util.py index 554614b30..1c4102e90 100644 --- a/python/vyos/util.py +++ b/python/vyos/util.py @@ -1,4 +1,4 @@ -# Copyright 2020-2021 VyOS maintainers and contributors <maintainers@vyos.io> +# Copyright 2020-2022 VyOS maintainers and contributors <maintainers@vyos.io> # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -623,6 +623,11 @@ def is_admin() -> bool: (_, _, _, admin_group_members) = getgrnam('sudo') return current_user in admin_group_members +def is_list_equal(first: list, second: list) -> bool: + """ Check if 2 lists are equal and list not empty """ + if len(first) != len(second) or len(first) == 0: + return False + return sorted(first) == sorted(second) def mac2eui64(mac, prefix=None): """ |