diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-03-04 19:38:01 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-03-04 21:43:59 +0100 |
commit | bb705d1a90cad14f07b5e61c44365868283feee9 (patch) | |
tree | c00bea605d8308a724a9dcf5fbc422ca62a239ff /python | |
parent | e2a46280601aee4846776ebad08ed367aa115460 (diff) | |
download | vyos-1x-bb705d1a90cad14f07b5e61c44365868283feee9.tar.gz vyos-1x-bb705d1a90cad14f07b5e61c44365868283feee9.zip |
vrf: T31: remove superfluous vyos.vrf library functions
vyos.vrf.list_vrfs() was only used in one function thus building a library is
no longer needed. If it is needed in the future it should be placed into a
library again.
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/vrf.py | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/python/vyos/vrf.py b/python/vyos/vrf.py deleted file mode 100644 index 99e4cb7d1..000000000 --- a/python/vyos/vrf.py +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 2020 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 -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library. If not, see <http://www.gnu.org/licenses/>. - -import json -import subprocess - - -def list_vrfs(): - command = 'ip -j -br link show type vrf' - answer = json.loads(subprocess.check_output(command.split()).decode()) - return [_ for _ in answer if _] |