From be81dceeecc7259b1e7195a0a783683a6381e66a Mon Sep 17 00:00:00 2001 From: Philipp Dorschner Date: Thu, 1 Oct 2020 13:52:27 +0200 Subject: [PATCH] Update README --- README.md | 12 ++++-------- check_brevisone | 5 ++++- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 2942948..de70fc4 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,9 @@ # check_brevisone -Plugin to check signal strength of Braintower SMS gateways. - -Important Note: ->Since BASIS Europe acquired the Braintower SMS Gateways business, the distribution ->and development will be continued under the new brandname brevis.one. The Plugin functionality ->and code of check_braintower stays the same, except for the new name: check_brevisone -> ->For more information see: [brevis.one](https://brevis.one/en/), [BASIS europe](https://www.basis-europe.eu/) +Plugin to check signal strength and availability of the [Brevis.One SMS gateway](https://brevis.one). + +This plugin was previously known as check_braintower, it was renamed due to a product name change. +You should be able to check gateways running older versions as well. # Installation diff --git a/check_brevisone b/check_brevisone index be41e2c..5188c35 100755 --- a/check_brevisone +++ b/check_brevisone @@ -106,9 +106,12 @@ if __name__ == '__main__': path = '%s://%s/check.php' prog = os.path.basename(sys.argv[0]) output = partial(output, name=prog) + readme = 'Plugin to check signal strength and availability of the Brevis.One SMS gateway.\n' \ + 'This plugin was previously known as check_braintower, it was renamed due to a product name change. ' \ + 'You should be able to check gateways running older versions as well.' # Parse Arguments - parser = argparse.ArgumentParser(prog=prog) + parser = argparse.ArgumentParser(prog=prog, description=readme) parser.add_argument('-V', '--version', action='version', version='%(prog)s v' + sys.modules[__name__].__version__) parser.add_argument('-H', '--hostname', help='The host address of the SMS gateway', required=True)