diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-07-13 19:21:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-13 19:21:10 +0200 |
commit | 2af23511aeee3652b978aaffbb12de0617476bb5 (patch) | |
tree | 9249d222c3b7e2131e2bd1f3c550d5fa0d9be771 | |
parent | e41a4ebbb11f0b41c071074664e22b318c5f2917 (diff) | |
parent | 62a6c5493b4ae92cb52a1ce9e1de03d0a932fd9d (diff) | |
download | vyos-1x-2af23511aeee3652b978aaffbb12de0617476bb5.tar.gz vyos-1x-2af23511aeee3652b978aaffbb12de0617476bb5.zip |
Merge pull request #918 from erkin/current
T3679: Update the unexpected exception message
-rw-r--r-- | python/vyos/airbag.py | 24 |
1 files changed, 8 insertions, 16 deletions
diff --git a/python/vyos/airbag.py b/python/vyos/airbag.py index 510ab7f46..a20f44207 100644 --- a/python/vyos/airbag.py +++ b/python/vyos/airbag.py @@ -18,7 +18,6 @@ from datetime import datetime from vyos import debug from vyos.logger import syslog -from vyos.version import get_version from vyos.version import get_full_version_data @@ -78,7 +77,7 @@ def bug_report(dtype, value, trace): information.update({ 'date': datetime.now().strftime('%Y-%m-%d %H:%M:%S'), 'trace': trace, - 'instructions': COMMUNITY if 'rolling' in get_version() else SUPPORTED, + 'instructions': INSTRUCTIONS, 'note': note, }) @@ -162,20 +161,13 @@ When reporting problems, please include as much information as possible: """ -COMMUNITY = """\ -- Make sure you are running the latest version of the code available at - https://downloads.vyos.io/rolling/current/amd64/vyos-rolling-latest.iso -- Consult the forum to see how to handle this issue - https://forum.vyos.io -- Join our community on slack where our users exchange help and advice - https://vyos.slack.com -""".strip() - -SUPPORTED = """\ -- Make sure you are running the latest stable version of VyOS - the code is available at https://downloads.vyos.io/?dir=release/current -- Contact us using the online help desk +INSTRUCTIONS = """\ +- Contact us using the online help desk if you have a subscription: https://support.vyos.io/ -- Join our community on slack where our users exchange help and advice +- Make sure you are running the latest version of VyOS available at: + https://vyos.net/get/ +- Consult the community forum to see how to handle this issue: + https://forum.vyos.io +- Join us on Slack where our users exchange help and advice: https://vyos.slack.com """.strip() |