diff options
author | hagbard <vyosdev@derith.de> | 2019-12-16 08:56:46 -0800 |
---|---|---|
committer | hagbard <vyosdev@derith.de> | 2019-12-16 08:56:46 -0800 |
commit | 214e63fbad5f1ed008543ba0eec56d1aa6649745 (patch) | |
tree | 71f21947a57366cf007206b0b852411ed09afb0e /python/vyos/config.py | |
parent | d814020778b8310faa3cd57ccfbc718bfb2fe215 (diff) | |
parent | b55b68f6246329468b4ab3450e127d5bab683bff (diff) | |
download | vyos-1x-214e63fbad5f1ed008543ba0eec56d1aa6649745.tar.gz vyos-1x-214e63fbad5f1ed008543ba0eec56d1aa6649745.zip |
Merge branch 'current' into equuleus
Diffstat (limited to 'python/vyos/config.py')
-rw-r--r-- | python/vyos/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/config.py b/python/vyos/config.py index 8bf5a1727..6aed8693c 100644 --- a/python/vyos/config.py +++ b/python/vyos/config.py @@ -99,7 +99,7 @@ class Config(object): # Running config can be obtained either from op or conf mode, it always succeeds # (if config system is initialized at all). if os.path.isfile('/tmp/vyos-config-status'): - running_config_text = self._run([self._cli_shell_api, '--show-active-only', '--show-show-defaults', 'showConfig']) + running_config_text = self._run([self._cli_shell_api, '--show-active-only', '--show-show-defaults', '--show-ignore-edit', 'showConfig']) else: with open('/opt/vyatta/etc/config/config.boot') as f: running_config_text = f.read() |