diff options
| author | Markus Heiser <markus.heiser@darmarit.de> | 2021-10-29 14:55:41 +0200 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarIT.de> | 2021-10-29 15:51:30 +0000 |
| commit | f46508b35fe2885055747b131f1213379af5a163 (patch) | |
| tree | b07f5f12fe2b4b910428edab818b2724b92c6f83 /utils/searxng_check.py | |
| parent | 5c4afdd737d0c38d1f41dff3b01c8a52f297308b (diff) | |
[mod] utils/searxng_check.py - check a SearXNG installation
Impplement a script to check a SearXNG installation::
./utils/searx.sh install check
Related-to: https://github.com/searxng/searxng/issues/450
Related-to: https://github.com/searxng/searxng/pull/446#issuecomment-954599668
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'utils/searxng_check.py')
| -rw-r--r-- | utils/searxng_check.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/utils/searxng_check.py b/utils/searxng_check.py new file mode 100644 index 000000000..afd0c4056 --- /dev/null +++ b/utils/searxng_check.py @@ -0,0 +1,27 @@ +# SPDX-License-Identifier: AGPL-3.0-or-later +# lint: pylint +"""Implement some checks in the active installation +""" + +import os +import sys +import logging +import warnings + +LOG_FORMAT_DEBUG = '%(levelname)-7s %(name)-30.30s: %(message)s' +logging.basicConfig(level=logging.getLevelName('DEBUG'), format=LOG_FORMAT_DEBUG) +os.environ['SEARXNG_DEBUG'] = '1' + +# from here on implement the checks of the installation + +import searx + +OLD_SETTING = '/etc/searx/settings.yml' + +if os.path.isfile(OLD_SETTING): + msg = ( + '%s is no longer valid, move setting to %s' % ( + OLD_SETTING, + os.environ.get('SEARXNG_SETTINGS_PATH', '/etc/searxng/settings.yml') + )) + warnings.warn(msg, DeprecationWarning) |