From: Ruben Beltran del Rio Date: Mon, 19 Feb 2024 23:54:45 +0000 (+0000) Subject: Use description instead of Id X-Git-Url: https://git.r.bdr.sh/rbdr/monitorcito/commitdiff_plain/de8c8f3614a51c69a8fee6a8553aad7166dae4a6 Use description instead of Id --- diff --git a/lib/index.js b/lib/index.js index d5d9668..e8d0019 100644 --- a/lib/index.js +++ b/lib/index.js @@ -6,7 +6,7 @@ const internals = { kFieldSeparator: '\n', kKeyValueSeparator: '=', kBlockSeparator: '\n\n', - statusCommand: 'systemctl show --no-page -p Id -p ActiveState', + statusCommand: 'systemctl show --no-page -p Description -p ActiveState', formatStatusOutput(systemctlText) { @@ -29,7 +29,7 @@ const internals = { return { ...statusObject, - [service.Id]: service.ActiveState === internals.kActiveIndicator + [service.Description]: service.ActiveState === internals.kActiveIndicator } }, {}); },