diff options
author | Daniil Baturin <daniil@vyos.io> | 2021-09-11 21:22:23 -0500 |
---|---|---|
committer | Daniil Baturin <daniil@vyos.io> | 2021-09-11 21:22:23 -0500 |
commit | ed01c03fc32d77ea95b89a40a7478e36abec8c1e (patch) | |
tree | 276c18272a7f665ecb446b462ad667b96ed4094c | |
parent | b46c1b0811a6391dd3dbb6c91d079f3fea5081e1 (diff) | |
download | vyos-1x-ed01c03fc32d77ea95b89a40a7478e36abec8c1e.tar.gz vyos-1x-ed01c03fc32d77ea95b89a40a7478e36abec8c1e.zip |
Fix inconsistent capitalization in the show version output
-rw-r--r-- | python/vyos/airbag.py | 8 | ||||
-rwxr-xr-x | src/op_mode/show_version.py | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/python/vyos/airbag.py b/python/vyos/airbag.py index a20f44207..3c7a144b7 100644 --- a/python/vyos/airbag.py +++ b/python/vyos/airbag.py @@ -125,14 +125,14 @@ def _intercepting_exceptions(_singleton=[False]): # if the key before the value has not time, syslog takes that as the source of the message FAULT = """\ -Report Time: {date} -Image Version: VyOS {version} -Release Train: {release_train} +Report time: {date} +Image version: VyOS {version} +Release train: {release_train} Built by: {built_by} Built on: {built_on} Build UUID: {build_uuid} -Build Commit ID: {build_git} +Build commit ID: {build_git} Architecture: {system_arch} Boot via: {boot_via} diff --git a/src/op_mode/show_version.py b/src/op_mode/show_version.py index 5bbc2e1f1..7962e1e7b 100755 --- a/src/op_mode/show_version.py +++ b/src/op_mode/show_version.py @@ -32,12 +32,12 @@ parser.add_argument("-j", "--json", action="store_true", help="Produce JSON outp version_output_tmpl = """ Version: VyOS {{version}} -Release Train: {{release_train}} +Release train: {{release_train}} Built by: {{built_by}} Built on: {{built_on}} Build UUID: {{build_uuid}} -Build Commit ID: {{build_git}} +Build commit ID: {{build_git}} Architecture: {{system_arch}} Boot via: {{boot_via}} |