diff --git a/LICENSE b/LICENSE index 0a59d55..60a6d09 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2022 Johannes Findeisen +Copyright (c) 2013-2023 Johannes Findeisen Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/bin/linspector b/bin/linspector index 78b1673..4b50616 100755 --- a/bin/linspector +++ b/bin/linspector @@ -1,9 +1,10 @@ #!/usr/bin/python3 -d """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022-2023 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + # TODO: VERY IMPORTANT! IMPLEMENT ERROR HANDLING ALL THE WAY...!!! # Only exit execution on critical core errors. Do not exit when monitors are failing on # configuration and execution, but log these errors. diff --git a/bin/lish b/bin/lish index c9af5fd..1d256c9 100755 --- a/bin/lish +++ b/bin/lish @@ -1,9 +1,10 @@ #!/usr/bin/python3 -d """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + # TODO: Make use of the "rich" library to for rich text and beautiful formatting in the terminal. import argparse # TODO: Remove logging in the client and barf output to the terminal directly in Lish. Implement a diff --git a/bin/litui b/bin/litui index ad19a22..3f94f2b 100644 --- a/bin/litui +++ b/bin/litui @@ -1,9 +1,10 @@ #!/usr/bin/python3 -d """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2023 Johannes Findeisen . All Rights Reserved. -See LICENSE for more details. +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + # TODO: Make this a curses style TUI interface for Linspector using urwid or maybe some more modern # framework like textual. Look at the Lish code for more details about backend implementation and # the general idea for implementing Linspector clients. diff --git a/linspector/configuration.py b/linspector/configuration.py index 11dd814..f8975b3 100644 --- a/linspector/configuration.py +++ b/linspector/configuration.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + import configparser import glob import os diff --git a/linspector/database.py b/linspector/database.py index 3627882..b93b19f 100644 --- a/linspector/database.py +++ b/linspector/database.py @@ -1,10 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022-2023 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ - class Database: def __init__(self, configuration, environment, log): self._configuration = configuration diff --git a/linspector/databases/dummy.py b/linspector/databases/dummy.py index 2150933..4c31364 100644 --- a/linspector/databases/dummy.py +++ b/linspector/databases/dummy.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022-2023 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + from linspector.database import Database diff --git a/linspector/databases/mysql.py b/linspector/databases/mysql.py index 64b8649..b71cad9 100644 --- a/linspector/databases/mysql.py +++ b/linspector/databases/mysql.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022-2023 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + import pymysql.cursors from linspector.database import Database diff --git a/linspector/environment.py b/linspector/environment.py index ef6e28f..682463a 100644 --- a/linspector/environment.py +++ b/linspector/environment.py @@ -1,10 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022-2023 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ - class Environment: """ Object for storing environment variables at runtime. These variables must not affect the diff --git a/linspector/linspector.py b/linspector/linspector.py index 77c94a2..c07d2af 100644 --- a/linspector/linspector.py +++ b/linspector/linspector.py @@ -1,9 +1,9 @@ - """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + import datetime import importlib import random diff --git a/linspector/linspectord.py b/linspector/linspectord.py index d45db05..7af4286 100644 --- a/linspector/linspectord.py +++ b/linspector/linspectord.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + import atexit import os import signal diff --git a/linspector/model.py b/linspector/model.py index a245c8a..7e682cc 100644 --- a/linspector/model.py +++ b/linspector/model.py @@ -1,10 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ - # This class can maybe be used for a general data model for Linspector data processing. currently # the is no use for it and no place known where it could be used with sense. class Model: diff --git a/linspector/monitor.py b/linspector/monitor.py index 4630714..ec0d1c9 100644 --- a/linspector/monitor.py +++ b/linspector/monitor.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022-2023 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + import configparser import importlib import time diff --git a/linspector/monitors.py b/linspector/monitors.py index 63cdf8d..2efbfd4 100644 --- a/linspector/monitors.py +++ b/linspector/monitors.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + import configparser import glob import os diff --git a/linspector/notification.py b/linspector/notification.py index 14edba0..90d5505 100644 --- a/linspector/notification.py +++ b/linspector/notification.py @@ -1,10 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ - class Notification: def __init__(self, configuration, environment, log): super().__init__() diff --git a/linspector/notifications/call.py b/linspector/notifications/call.py index deb906a..1902042 100644 --- a/linspector/notifications/call.py +++ b/linspector/notifications/call.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + from linspector.notification import Notification diff --git a/linspector/notifications/email.py b/linspector/notifications/email.py index d033ca9..0c39226 100644 --- a/linspector/notifications/email.py +++ b/linspector/notifications/email.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + from linspector.notification import Notification diff --git a/linspector/notifications/sms.py b/linspector/notifications/sms.py index 325d2b1..28d9396 100644 --- a/linspector/notifications/sms.py +++ b/linspector/notifications/sms.py @@ -1,7 +1,7 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ from linspector.notification import Notification diff --git a/linspector/notifications/twitter.py b/linspector/notifications/twitter.py index 1858615..05987cb 100644 --- a/linspector/notifications/twitter.py +++ b/linspector/notifications/twitter.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + from linspector.notification import Notification diff --git a/linspector/plugin.py b/linspector/plugin.py index d10435f..08ba5df 100644 --- a/linspector/plugin.py +++ b/linspector/plugin.py @@ -1,10 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ - class Plugin: def __init__(self, configuration, environment, linspector, log): self._configuration = configuration diff --git a/linspector/plugins/api.py b/linspector/plugins/api.py index 6f9dcf5..3648fdd 100644 --- a/linspector/plugins/api.py +++ b/linspector/plugins/api.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2023 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + # TODO: Make this a backend API using the modern FastAPI framework as a replacement for the # traditional RPC plugin. Maybe it makes sense to maintain the RPC plugin too for simple usage by # the Lish but I believe it makes sense to only create one backend for all clients. diff --git a/linspector/plugins/httpd.py b/linspector/plugins/httpd.py index 8f43ade..ab76760 100644 --- a/linspector/plugins/httpd.py +++ b/linspector/plugins/httpd.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022-2023 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + import json import cherrypy diff --git a/linspector/plugins/lish.py b/linspector/plugins/lish.py index a890094..0b15399 100644 --- a/linspector/plugins/lish.py +++ b/linspector/plugins/lish.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + # TODO: This plugin should become the internal Lish implemented as a plugin which does not use the # API plugin but loads at the end when starting Linspector in interactive mode as a terminal like # interface to the core of Linspector. diff --git a/linspector/plugins/rpc.py b/linspector/plugins/rpc.py index dff255b..0d22652 100644 --- a/linspector/plugins/rpc.py +++ b/linspector/plugins/rpc.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + from linspector.plugin import Plugin diff --git a/linspector/plugins/syslog.py b/linspector/plugins/syslog.py index ea359ce..9b16043 100644 --- a/linspector/plugins/syslog.py +++ b/linspector/plugins/syslog.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2023 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + # TODO: Think about this idea it little bit more. Maybe Syslog support should not become a plugin # but should better be implemented in the core. from linspector.plugin import Plugin diff --git a/linspector/service.py b/linspector/service.py index 5c19db6..cf522d9 100644 --- a/linspector/service.py +++ b/linspector/service.py @@ -1,10 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ - class Service: def __init__(self, configuration, environment, log): self._configuration = configuration diff --git a/linspector/services/http/httpconnect.py b/linspector/services/http/httpconnect.py index 141513f..5ce930e 100644 --- a/linspector/services/http/httpconnect.py +++ b/linspector/services/http/httpconnect.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + from linspector.service import Service diff --git a/linspector/services/http/httpkeyword.py b/linspector/services/http/httpkeyword.py index 932cec3..b0650a4 100644 --- a/linspector/services/http/httpkeyword.py +++ b/linspector/services/http/httpkeyword.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + from linspector.service import Service diff --git a/linspector/services/misc/dummy.py b/linspector/services/misc/dummy.py index f3e55b3..63f5e61 100644 --- a/linspector/services/misc/dummy.py +++ b/linspector/services/misc/dummy.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022-2023 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + from linspector.service import Service diff --git a/linspector/services/misc/random.py b/linspector/services/misc/random.py index 5d27c3b..a0a5d54 100644 --- a/linspector/services/misc/random.py +++ b/linspector/services/misc/random.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022-2023 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + import hashlib import random diff --git a/linspector/services/net/ping.py b/linspector/services/net/ping.py index 07111b0..4ed8974 100644 --- a/linspector/services/net/ping.py +++ b/linspector/services/net/ping.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + from linspector.service import Service diff --git a/linspector/services/net/port.py b/linspector/services/net/port.py index 2b5986a..1253533 100644 --- a/linspector/services/net/port.py +++ b/linspector/services/net/port.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + import socket from linspector.service import Service diff --git a/linspector/services/net/speedtest.py b/linspector/services/net/speedtest.py index e8672b4..e4c5d84 100644 --- a/linspector/services/net/speedtest.py +++ b/linspector/services/net/speedtest.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + import calendar import time @@ -30,11 +31,11 @@ class SpeedtestService(Service): while True: tmp_time = time.localtime(calendar.timegm(time.gmtime())) self._environment.set_env_var('_speedtest_last_run_date', - time.strftime('%Y-%m-%d %H:%M:%S', - tmp_time)) + time.strftime('%Y-%m-%d %H:%M:%S', + tmp_time)) self._environment.set_env_var('_speedtest_last_run_timestamp', - calendar.timegm(time.gmtime())) + calendar.timegm(time.gmtime())) start = time.perf_counter() request = requests.get(self._configuration.get_speedtest_url(), stream=True) @@ -56,18 +57,18 @@ class SpeedtestService(Service): self._speedtest_average_speed = total_mbps / total_chunks self._environment.set_env_var('_speedtest_average_speed_megabyte_per_second', - str(round(self._speedtest_average_speed))) + str(round(self._speedtest_average_speed))) self._speedtest_maximum_speed = maximum_speed self._environment.set_env_var('_speedtest_maximum_speed_megabyte_per_second', - str(round(self._speedtest_maximum_speed))) + str(round(self._speedtest_maximum_speed))) self._speedtest_time_elapsed = time.perf_counter() - start self._environment.set_env_var('_speedtest_time_elapsed', - str(self._speedtest_time_elapsed)) + str(self._speedtest_time_elapsed)) self._log.info('speedtest average: ' + str(self._speedtest_average_speed) + - ', max: ' + str(self._speedtest_maximum_speed) + - ', time: ' + str(self._speedtest_time_elapsed)) + ', max: ' + str(self._speedtest_maximum_speed) + + ', time: ' + str(self._speedtest_time_elapsed)) else: self._log.warning('could not calculate download speed!') diff --git a/linspector/services/net/ssh.py b/linspector/services/net/ssh.py index 6f707a3..7886610 100644 --- a/linspector/services/net/ssh.py +++ b/linspector/services/net/ssh.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + import os import pprint diff --git a/linspector/services/net/tcpconnect.py b/linspector/services/net/tcpconnect.py index a21ec1d..4b567e7 100644 --- a/linspector/services/net/tcpconnect.py +++ b/linspector/services/net/tcpconnect.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + from linspector.service import Service diff --git a/linspector/services/snmp/get.py b/linspector/services/snmp/get.py index 59ffb8b..46b7e86 100644 --- a/linspector/services/snmp/get.py +++ b/linspector/services/snmp/get.py @@ -1,7 +1,7 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ from linspector.service import Service diff --git a/linspector/services/sys/shell.py b/linspector/services/sys/shell.py index fb52eba..f781f7b 100644 --- a/linspector/services/sys/shell.py +++ b/linspector/services/sys/shell.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license) +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + from linspector.service import Service diff --git a/linspector/services/sys/uptime.py b/linspector/services/sys/uptime.py index 62934ca..b217cb8 100644 --- a/linspector/services/sys/uptime.py +++ b/linspector/services/sys/uptime.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license) +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + from linspector.service import Service diff --git a/linspector/services/vendor/avm/is_connected.py b/linspector/services/vendor/avm/is_connected.py index 269c9d9..3147f76 100644 --- a/linspector/services/vendor/avm/is_connected.py +++ b/linspector/services/vendor/avm/is_connected.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022-2023 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + from fritzconnection.lib.fritzstatus import FritzStatus from linspector.service import Service diff --git a/linspector/singleton.py b/linspector/singleton.py index 9ac5dfc..b98ecbf 100644 --- a/linspector/singleton.py +++ b/linspector/singleton.py @@ -1,10 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ - # see http://stackoverflow.com/questions/42558/python-and-the-singleton-pattern diff --git a/linspector/task.py b/linspector/task.py index e0987b3..522eca8 100644 --- a/linspector/task.py +++ b/linspector/task.py @@ -1,10 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022-2023 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ - class Task: def __init__(self, configuration, environment, log, **kwargs): self._args = {} diff --git a/linspector/tasks/csv.py b/linspector/tasks/csv.py index 5ca6a89..2c221d9 100644 --- a/linspector/tasks/csv.py +++ b/linspector/tasks/csv.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022-2023 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + from linspector.task import Task diff --git a/linspector/tasks/file.py b/linspector/tasks/file.py index 285dbc5..c5cb295 100644 --- a/linspector/tasks/file.py +++ b/linspector/tasks/file.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022-2023 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + from linspector.task import Task diff --git a/linspector/tasks/redis.py b/linspector/tasks/redis.py index b893616..291b73c 100644 --- a/linspector/tasks/redis.py +++ b/linspector/tasks/redis.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + from linspector.task import Task diff --git a/linspector/tasks/splunk.py b/linspector/tasks/splunk.py index a443b09..0d69179 100644 --- a/linspector/tasks/splunk.py +++ b/linspector/tasks/splunk.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2023 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + from linspector.task import Task diff --git a/linspector/tasks/sqlite.py b/linspector/tasks/sqlite.py index b7ba84c..924fef2 100644 --- a/linspector/tasks/sqlite.py +++ b/linspector/tasks/sqlite.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2022 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + from linspector.task import Task diff --git a/linspector/tasks/syslog.py b/linspector/tasks/syslog.py index a21bae3..7243873 100644 --- a/linspector/tasks/syslog.py +++ b/linspector/tasks/syslog.py @@ -1,8 +1,9 @@ """ This file is part of Linspector (https://linspector.org/) -Copyright (c) 2023 Johannes Findeisen . All Rights Reserved. -See LICENSE (MIT license). +Copyright (c) 2013-2023 Johannes Findeisen . All Rights Reserved. +See LICENSE. """ + from linspector.task import Task