From a927a265466a9f320ae311ce14bb0ecf49d59c5b Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Thu, 29 Feb 2024 18:03:25 -0500 Subject: [PATCH] Re-work node_status --- galaxy.yml | 2 +- roles/node_status/defaults/main.yml | 1 - roles/node_status/tasks/main.yml | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/galaxy.yml b/galaxy.yml index 92f3b0c..561c77e 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -8,7 +8,7 @@ namespace: jchristianh name: baseos # The version of the collection. Must be compatible with semantic versioning -version: 1.0.22 +version: 1.0.23 # The path to the Markdown (.md) readme file. This path is relative to the root of the collection readme: README.md diff --git a/roles/node_status/defaults/main.yml b/roles/node_status/defaults/main.yml index 129f0af..f5dd2e4 100644 --- a/roles/node_status/defaults/main.yml +++ b/roles/node_status/defaults/main.yml @@ -4,4 +4,3 @@ node_status_user : chris node_status_group : chris node_status_dir : /home/chris/node_status node_status_file : status.csv -node_status_count : 3 diff --git a/roles/node_status/tasks/main.yml b/roles/node_status/tasks/main.yml index 774e13d..f67d146 100644 --- a/roles/node_status/tasks/main.yml +++ b/roles/node_status/tasks/main.yml @@ -29,4 +29,4 @@ owner : "{{ node_status_user }}" group : "{{ node_status_group }}" delegate_to : "{{ node_status_host }}" - loop: "{{ range(0, node_status_count) | list }}" + throttle : 1 -- 2.47.1