diff options
author | John Estabrook <jestabro@sentrium.io> | 2019-05-30 13:46:08 -0500 |
---|---|---|
committer | John Estabrook <jestabro@sentrium.io> | 2019-06-05 15:13:58 -0500 |
commit | 6763170830010c8cea2f17daee5f46b9203dab56 (patch) | |
tree | d64f009676f44f8d49a09b91655d81ec1f22ca08 /python/vyos/defaults.py | |
parent | 1483288278060c62904ba1c9984aae841600e2f5 (diff) | |
download | vyos-1x-6763170830010c8cea2f17daee5f46b9203dab56.tar.gz vyos-1x-6763170830010c8cea2f17daee5f46b9203dab56.zip |
T1334: Migration script runner rewrite
Python script and support code to replace the
vyatta_config_migrate.pl script.
Diffstat (limited to 'python/vyos/defaults.py')
-rw-r--r-- | python/vyos/defaults.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/python/vyos/defaults.py b/python/vyos/defaults.py index 0603efc42..da363b8e1 100644 --- a/python/vyos/defaults.py +++ b/python/vyos/defaults.py @@ -16,7 +16,11 @@ directories = { "data": "/usr/share/vyos/", - "config": "/opt/vyatta/etc/config" + "config": "/opt/vyatta/etc/config", + "current": "/opt/vyatta/etc/config-migrate/current", + "migrate": "/opt/vyatta/etc/config-migrate/migrate", } cfg_group = 'vyattacfg' + +cfg_vintage = 'vyatta' |