From b27635a71771d7d4363033ef19eeb0140dee3218 Mon Sep 17 00:00:00 2001 From: Navid Sassan Date: Wed, 22 Nov 2023 17:36:39 +0100 Subject: [PATCH] about-me: add "ncdu" to tools --- check-plugins/about-me/about-me | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/check-plugins/about-me/about-me b/check-plugins/about-me/about-me index 76f16138..57360647 100755 --- a/check-plugins/about-me/about-me +++ b/check-plugins/about-me/about-me @@ -40,7 +40,7 @@ except ImportError: __author__ = 'Linuxfabrik GmbH, Zurich/Switzerland' -__version__ = '2023112101' +__version__ = '2023112201' DESCRIPTION = 'Reports a quick overview about the host dimensions and installed software.' @@ -1635,6 +1635,12 @@ def find_tools(): # pylint: disable=R0915 'installed': output is not False, } + output = run_cmd('command -v ncdu') + s['ncdu'] = { + 'display-name': 'ncdu', + 'installed': output is not False, + } + output = run_cmd('command -v nmap') s['nmap'] = { 'display-name': 'nmap',