From bb533287b8e347d92ce662fc06095306e19d8e45 Mon Sep 17 00:00:00 2001 From: Roberto Chaud Date: Thu, 18 Jul 2024 12:59:23 -0500 Subject: [PATCH] Create receptor group if missing (#15276) --- .../templates/instance_install_bundle/install_receptor.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/awx/api/templates/instance_install_bundle/install_receptor.yml b/awx/api/templates/instance_install_bundle/install_receptor.yml index 8e1b09951e..a89ae6f091 100644 --- a/awx/api/templates/instance_install_bundle/install_receptor.yml +++ b/awx/api/templates/instance_install_bundle/install_receptor.yml @@ -2,6 +2,12 @@ - hosts: all become: yes tasks: + - name: Create the receptor group + group: +{% verbatim %} + name: "{{ receptor_group }}" +{% endverbatim %} + state: present - name: Create the receptor user user: {% verbatim %}