Create receptor group if missing (#15276)

This commit is contained in:
Roberto Chaud
2024-07-18 12:59:23 -05:00
committed by GitHub
parent 9979fc659e
commit bb533287b8

View File

@@ -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 %}