diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/vyos/configsession.py | 3 | ||||
| -rw-r--r-- | python/vyos/opmode.py | 5 | 
2 files changed, 5 insertions, 3 deletions
| diff --git a/python/vyos/configsession.py b/python/vyos/configsession.py index 9c56d246a..5876dc5b0 100644 --- a/python/vyos/configsession.py +++ b/python/vyos/configsession.py @@ -42,8 +42,7 @@ INSTALL_IMAGE = [  IMPORT_PKI = ['/opt/vyatta/bin/vyatta-op-cmd-wrapper', 'import']  IMPORT_PKI_NO_PROMPT = [      '/usr/libexec/vyos/op_mode/pki.py', -    '--action', -    'import', +    'import_pki',      '--no-prompt',  ]  REMOVE_IMAGE = [ diff --git a/python/vyos/opmode.py b/python/vyos/opmode.py index 066c8058f..136ac35e2 100644 --- a/python/vyos/opmode.py +++ b/python/vyos/opmode.py @@ -89,7 +89,10 @@ class InternalError(Error):  def _is_op_mode_function_name(name): -    if re.match(r"^(show|clear|reset|restart|add|update|delete|generate|set|renew|release|execute)", name): +    if re.match( +        r'^(show|clear|reset|restart|add|update|delete|generate|set|renew|release|execute|import)', +        name, +    ):          return True      else:          return False | 
