From 78c47af393a5e65064583a31d5a20625538c543b Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Fri, 1 Mar 2024 08:54:46 -0500 Subject: [PATCH 1/2] Add loop for updates --- roles/node_status/defaults/main.yml | 1 + roles/node_status/tasks/main.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/roles/node_status/defaults/main.yml b/roles/node_status/defaults/main.yml index f5dd2e4..3ce2804 100644 --- a/roles/node_status/defaults/main.yml +++ b/roles/node_status/defaults/main.yml @@ -4,3 +4,4 @@ node_status_user : chris node_status_group : chris node_status_dir : /home/chris/node_status node_status_file : status.csv +node_status_lc : 3 diff --git a/roles/node_status/tasks/main.yml b/roles/node_status/tasks/main.yml index 44e0785..5880ce1 100644 --- a/roles/node_status/tasks/main.yml +++ b/roles/node_status/tasks/main.yml @@ -30,5 +30,6 @@ group : "{{ node_status_group }}" delegate_to : "{{ node_status_host }}" throttle : 1 + loop: "{{ range(0, node_status_lc) | list }}" loop_control: loop_var : node_status_log_loop -- 2.47.1 From c104223bc07b6260c37c4907e0d2df39bb2ea75e Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Fri, 1 Mar 2024 08:59:27 -0500 Subject: [PATCH 2/2] Version bump to 1.0.25 --- galaxy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/galaxy.yml b/galaxy.yml index ee3da91..0cf3486 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.24 +version: 1.0.25 # The path to the Markdown (.md) readme file. This path is relative to the root of the collection readme: README.md -- 2.47.1