summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2019-08-25 08:27:08 +0200
committerGitHub <noreply@github.com>2019-08-25 08:27:08 +0200
commit9d68ce363d50a13246fcd7407795ef536501d296 (patch)
tree2046f1170874d3058f565fa6eab83b82a4603a2a /src
parentabd8adaa2c3839bbdb371c081e328da28a75a135 (diff)
parent84957a3418db23716b9e80f38733ed5e0bd4252e (diff)
downloadvyos-1x-9d68ce363d50a13246fcd7407795ef536501d296.tar.gz
vyos-1x-9d68ce363d50a13246fcd7407795ef536501d296.zip
Merge pull request #115 from DmitriyEshenko/dummy
[dummy] T1609 migrate to vyos.interfaceconfig
Diffstat (limited to 'src')
-rwxr-xr-xsrc/conf_mode/interface-dummy.py19
1 files changed, 10 insertions, 9 deletions
diff --git a/src/conf_mode/interface-dummy.py b/src/conf_mode/interface-dummy.py
index 8c939ce95..c7c5ac99c 100755
--- a/src/conf_mode/interface-dummy.py
+++ b/src/conf_mode/interface-dummy.py
@@ -20,8 +20,6 @@ import os
import sys
import copy
-import vyos.configinterface as VyIfconfig
-
from vyos.interfaceconfig import Interface
from vyos.config import Config
from vyos import ConfigError
@@ -86,20 +84,23 @@ def generate(dummy):
def apply(dummy):
# Remove dummy interface
if dummy['deleted']:
- VyIfconfig.remove_interface(dummy['intf'])
+ Interface(dummy['intf']).remove_interface()
else:
# Interface will only be added if it yet does not exist
- VyIfconfig.add_interface('dummy', dummy['intf'])
+ Interface(dummy['intf'], 'dummy')
# update interface description used e.g. within SNMP
- VyIfconfig.set_description(dummy['intf'], dummy['description'])
+ if dummy['description']:
+ Interface(dummy['intf']).ifalias = dummy['description']
# Configure interface address(es)
- for addr in dummy['address_remove']:
- VyIfconfig.remove_interface_address(dummy['intf'], addr)
+ if len(dummy['address_remove']) > 0:
+ Interface(dummy['intf']).del_addr(dummy['address_remove'])
- for addr in dummy['address']:
- VyIfconfig.add_interface_address(dummy['intf'], addr)
+ if len(dummy['address']) > 0:
+ # delete already existing addreses from list
+ addresess = diff(dummy['address'], Interface(dummy['intf']).get_addr(1))
+ Interface(dummy['intf']).add_addr(addresess)
if dummy['disable']:
Interface(dummy['intf']).linkstate = 'down'