diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-09-24 18:04:17 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-09-24 18:10:48 +0200 |
commit | d77f68ef3198cff019e1e2d74dfe2290800a1ea6 (patch) | |
tree | da3be3377968d9f4c242c0dfb5aa2421ecf7fbc8 /src/conf_mode/interface-dummy.py | |
parent | 6b828200e698dbff5a3ee61a0c6c9906b0a8493f (diff) | |
download | vyos-1x-d77f68ef3198cff019e1e2d74dfe2290800a1ea6.tar.gz vyos-1x-d77f68ef3198cff019e1e2d74dfe2290800a1ea6.zip |
Python/ifconfig: T1557: refactor 'mtu' property to get_mtu()/set_mtu()
Diffstat (limited to 'src/conf_mode/interface-dummy.py')
-rwxr-xr-x | src/conf_mode/interface-dummy.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/conf_mode/interface-dummy.py b/src/conf_mode/interface-dummy.py index 614fe08db..1b3fbcc93 100755 --- a/src/conf_mode/interface-dummy.py +++ b/src/conf_mode/interface-dummy.py @@ -13,10 +13,9 @@ # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -# -# -from os import environ +import os + from copy import deepcopy from sys import exit @@ -40,7 +39,7 @@ def get_config(): # determine tagNode instance try: - dummy['intf'] = environ['VYOS_TAGNODE_VALUE'] + dummy['intf'] = os.environ['VYOS_TAGNODE_VALUE'] except KeyError as E: print("Interface not specified") |