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 /src/helpers/system-versions-foot.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 'src/helpers/system-versions-foot.py')
-rwxr-xr-x | src/helpers/system-versions-foot.py | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/helpers/system-versions-foot.py b/src/helpers/system-versions-foot.py new file mode 100755 index 000000000..c33e41d79 --- /dev/null +++ b/src/helpers/system-versions-foot.py @@ -0,0 +1,39 @@ +#!/usr/bin/python3 + +# Copyright 2019 VyOS maintainers and contributors <maintainers@vyos.io> +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# 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 sys +import vyos.formatversions as formatversions +import vyos.systemversions as systemversions +import vyos.defaults +import vyos.version + +sys_versions = systemversions.get_system_versions() + +component_string = formatversions.format_versions_string(sys_versions) + +os_version_string = vyos.version.get_version() + +sys.stdout.write("\n\n") +if vyos.defaults.cfg_vintage == 'vyos': + formatversions.write_vyos_versions_foot(None, component_string, + os_version_string) +elif vyos.defaults.cfg_vintage == 'vyatta': + formatversions.write_vyatta_versions_foot(None, component_string, + os_version_string) +else: + formatversions.write_vyatta_versions_foot(None, component_string, + os_version_string) |