Skip to content

Commit

Permalink
about-me: Add networking.service detection
Browse files Browse the repository at this point in the history
  • Loading branch information
markuslf committed Aug 29, 2024
1 parent 96e2fbc commit a660307
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions check-plugins/about-me/about-me
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ except ImportError:


__author__ = 'Linuxfabrik GmbH, Zurich/Switzerland'
__version__ = '2024082901'
__version__ = '2024082902'

DESCRIPTION = 'Provides a quick overview of host dimensions and software.'

Expand Down Expand Up @@ -354,7 +354,7 @@ def get_lftags():
# {'sw': 'MySQL Replication', 'package': [], 'expr': []}, # pylint: disable=C0301
# {'sw': 'MySQL Schemas', 'package': [], 'expr': []}, # pylint: disable=C0301
# {'sw': 'MySQL Security', 'package': [], 'expr': []}, # pylint: disable=C0301
{'sw': 'networking', 'package': [], 'expr': [run_cmd('systemctl is-enabled networking.service', ignore_output=True)]}, # pylint: disable=C0301
{'sw': 'networking.service', 'package': [], 'expr': [run_cmd('systemctl is-enabled networking.service', ignore_output=True)]}, # pylint: disable=C0301
{'sw': 'Nextcloud', 'package': [], 'expr': [run_cmd('systemctl is-enabled nextcloud-jobs.timer', ignore_output=True)]}, # pylint: disable=C0301
{'sw': 'NFS Server', 'package': [], 'expr': [run_cmd('systemctl is-enabled nfs-server.service', ignore_output=True)]}, # pylint: disable=C0301
{'sw': 'Nginx', 'package': [], 'expr': [run_cmd('systemctl is-enabled nginx.service', ignore_output=True)]}, # pylint: disable=C0301
Expand Down

0 comments on commit a660307

Please sign in to comment.