Skip to content

Commit c9910a2

Browse files
committed
style: fix typo (closes #850)
1 parent 7039494 commit c9910a2

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

check-plugins/mysql-database-metrics/mysql-database-metrics

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ from lib.globals import (STATE_OK, STATE_UNKNOWN, # pylint: disable=C0413
2121
STATE_WARN)
2222

2323
__author__ = 'Linuxfabrik GmbH, Zurich/Switzerland'
24-
__version__ = '2023112901'
24+
__version__ = '2025031401'
2525

2626
DESCRIPTION = """Checks index sizes and consistent engine and collation use in
2727
MySQL/MariaDB schemas."""
@@ -215,7 +215,7 @@ def main():
215215
state = STATE_WARN
216216
msg = 'There are warnings.\n\n' + msg
217217
else:
218-
msg = 'Everyhing is ok.'
218+
msg = 'Everything is ok.'
219219

220220
# over and out
221221
lib.base.oao(msg, state, always_ok=args.ALWAYS_OK)

check-plugins/mysql-storage-engines/mysql-storage-engines

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ from lib.globals import (STATE_OK, STATE_UNKNOWN, # pylint: disable=C0413
2222
STATE_WARN)
2323

2424
__author__ = 'Linuxfabrik GmbH, Zurich/Switzerland'
25-
__version__ = '2023112901'
25+
__version__ = '2025031401'
2626

2727
DESCRIPTION = """Checks storage engines, fragmented tables and autoindex usage in MySQL/MariaDB."""
2828

@@ -228,7 +228,7 @@ def main():
228228
state = STATE_WARN
229229
msg = 'There are warnings.\n\n' + msg
230230
else:
231-
msg = 'Everyhing is ok.'
231+
msg = 'Everything is ok.'
232232

233233
# over and out
234234
lib.base.oao(msg, state, always_ok=args.ALWAYS_OK)

check-plugins/mysql-table-indexes/mysql-table-indexes

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ from lib.globals import (STATE_OK, STATE_UNKNOWN, # pylint: disable=C0413
2020
STATE_WARN)
2121

2222
__author__ = 'Linuxfabrik GmbH, Zurich/Switzerland'
23-
__version__ = '2023112901'
23+
__version__ = '2025031401'
2424

2525
DESCRIPTION = """Checks for missing indexes in MySQL/MariaDB tables."""
2626

@@ -138,7 +138,7 @@ def main():
138138
lib.db_mysql.close(conn)
139139

140140
if not tables:
141-
msg = 'Everyhing is ok.'
141+
msg = 'Everything is ok.'
142142
else:
143143
state = STATE_WARN
144144
msg = 'Tables without indexes {}:\n* {}'.format(

check-plugins/mysql-user-security/mysql-user-security

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import lib.txt # pylint: disable=C0413
2222
from lib.globals import STATE_OK, STATE_UNKNOWN # pylint: disable=C0413
2323

2424
__author__ = 'Linuxfabrik GmbH, Zurich/Switzerland'
25-
__version__ = '2023112901'
25+
__version__ = '2025031401'
2626

2727
DESCRIPTION = """Check user's security in MySQL/MariaDB."""
2828

@@ -237,7 +237,7 @@ def main():
237237

238238
msg = msg_header + '\n' + msg_body
239239
if not msg.strip():
240-
msg = 'Everyhing is ok.'
240+
msg = 'Everything is ok.'
241241

242242
# over and out
243243
lib.base.oao(msg, state, always_ok=args.ALWAYS_OK)

check-plugins/pip-updates/pip-updates

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ from lib.globals import (STATE_CRIT, STATE_OK, # pylint: disable=C0413
2424
STATE_UNKNOWN, STATE_WARN)
2525

2626
__author__ = 'Linuxfabrik GmbH, Zurich/Switzerland'
27-
__version__ = '2025021501'
27+
__version__ = '2025031401'
2828

2929
DESCRIPTION = """Checks if there are outdated Python packages, installed via `pip`."""
3030

@@ -228,7 +228,7 @@ def main():
228228

229229
# build the message
230230
if not stderr and state == STATE_OK:
231-
msg += 'Everyhing is ok. '
231+
msg += 'Everything is ok. '
232232
elif stderr and state == STATE_OK:
233233
msg += 'pip is complaining about something or about itself, but '
234234
if len(packages) > 0:

check-plugins/whmcs-status/unit-test/run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class TestCheck(unittest.TestCase):
4242

4343
def test_if_check_runs_EXAMPLE03(self):
4444
stdout, stderr, retc = lib.base.coe(lib.shell.shell_exec(self.check + ' --identifier=linuxfabrik --secret=linuxfabrik --test=stdout/EXAMPLE03,,0'))
45-
self.assertIn('Everyhing is ok.', stdout)
45+
self.assertIn('Everything is ok.', stdout)
4646
self.assertEqual(stderr, '')
4747
self.assertEqual(retc, STATE_OK)
4848

check-plugins/whmcs-status/whmcs-status

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import lib.url # pylint: disable=C0413
2424
from lib.globals import (STATE_OK, STATE_WARN, STATE_UNKNOWN) # pylint: disable=C0413
2525

2626
__author__ = 'Linuxfabrik GmbH, Zurich/Switzerland'
27-
__version__ = '2025021501'
27+
__version__ = '2025031401'
2828

2929
DESCRIPTION = '''Returns the health status of a WHMCS server using its
3030
HTTP-based API.'''
@@ -222,7 +222,7 @@ def main():
222222
msg_header = f'{msg_header}, ordered by severity'
223223
msg = f'{msg_header}.\n\n{msg}'
224224
else:
225-
msg = 'Everyhing is ok.'
225+
msg = 'Everything is ok.'
226226

227227
# over and out
228228
lib.base.oao(msg, state, perfdata)

0 commit comments

Comments
 (0)