diff options
author | John Estabrook <jestabro@vyos.io> | 2021-08-19 14:30:32 -0500 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2021-08-20 14:24:16 -0500 |
commit | c9cfc599615cdcd54195ee45f71b78d507a8407d (patch) | |
tree | bc53cc0a49536e746c799cc5694f3a2d3d005ae1 /python/vyos/defaults.py | |
parent | 50280c9ec8dbf87a5ddea65374c651fc379b4cb3 (diff) | |
download | vyos-1x-c9cfc599615cdcd54195ee45f71b78d507a8407d.tar.gz vyos-1x-c9cfc599615cdcd54195ee45f71b78d507a8407d.zip |
T1950: write component versions to json file during migration
(cherry picked from commit 1a498915efdc433dda7bd6e5fcc08703a48560c6)
Diffstat (limited to 'python/vyos/defaults.py')
-rw-r--r-- | python/vyos/defaults.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/vyos/defaults.py b/python/vyos/defaults.py index 354e4d362..ca5e02834 100644 --- a/python/vyos/defaults.py +++ b/python/vyos/defaults.py @@ -13,6 +13,7 @@ # You should have received a copy of the GNU Lesser General Public # License along with this library. If not, see <http://www.gnu.org/licenses/>. +import os directories = { "data": "/usr/share/vyos/", @@ -31,6 +32,8 @@ cfg_vintage = 'vyos' commit_lock = '/opt/vyatta/config/.lock' +component_version_json = os.path.join(directories['data'], 'component-versions.json') + https_data = { 'listen_addresses' : { '*': ['_'] } } |