From f7d53ef99799821d2a56ed62ab0465169711b94b Mon Sep 17 00:00:00 2001 From: Bartosz Bezak Date: Wed, 6 Nov 2024 11:15:52 +0100 Subject: [PATCH 1/2] os_images: rc assert fix --- roles/os_images/tasks/prechecks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/os_images/tasks/prechecks.yml b/roles/os_images/tasks/prechecks.yml index 0a9aef5..11a654e 100644 --- a/roles/os_images/tasks/prechecks.yml +++ b/roles/os_images/tasks/prechecks.yml @@ -10,7 +10,7 @@ - name: Display warning message about the container engine ansible.builtin.assert: that: - - result.rc = 0 + - result.rc == 0 fail_msg: > Container runtime engine could not be found - make sure it is installed. Elements that depend on it will likely fail when building. From 9fed3690f9e882319ca544c18136d0d6d759b49c Mon Sep 17 00:00:00 2001 From: Bartosz Bezak Date: Wed, 6 Nov 2024 11:16:56 +0100 Subject: [PATCH 2/2] bump collection version --- galaxy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/galaxy.yml b/galaxy.yml index 1ce91b6..e88ff7d 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,7 +1,7 @@ --- namespace: stackhpc name: openstack -version: 0.2.3 +version: 0.2.4 readme: README.md authors: - StackHPC Ltd