summaryrefslogtreecommitdiff
path: root/utils/searxng_check.py
blob: afd0c4056ec21e68fa05126fc8b15dbddf807769 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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)