diff options
| -rw-r--r-- | python/vyos/ifconfig/pppoe.py | 10 | 
1 files changed, 9 insertions, 1 deletions
| diff --git a/python/vyos/ifconfig/pppoe.py b/python/vyos/ifconfig/pppoe.py index 7504408cf..787245696 100644 --- a/python/vyos/ifconfig/pppoe.py +++ b/python/vyos/ifconfig/pppoe.py @@ -30,4 +30,12 @@ class PPPoEIf(Interface):          },      } -    # The _create and _delete need to be moved from interface-ppoe to here +    # stub this interface is created in the configure script + +    def _create(self): +        # we can not create this interface as it is managed outside +        pass + +    def _delete(self): +        # we can not create this interface as it is managed outside +        pass | 
