From 02e79deb5c873f7226bdee04363d8c89fec4a2d6 Mon Sep 17 00:00:00 2001 From: Alexandre Pires Date: Fri, 2 May 2025 14:24:41 +0200 Subject: [PATCH] fix: Update argument parser description for clarity --- bin/read_system_id | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/read_system_id b/bin/read_system_id index 8d4d35b..b68ff44 100755 --- a/bin/read_system_id +++ b/bin/read_system_id @@ -24,7 +24,7 @@ def parse_ansible_inventory(inventory_file): return inventory_dict -parser = argparse.ArgumentParser(description='Run a command on a group of hosts') +parser = argparse.ArgumentParser(description='Get host system ID') parser.add_argument('group', type=str, help='Group of hosts to run the command on') parser.add_argument('host', type=str, help='Host to run the command on', default=None, nargs='?') args = parser.parse_args()