We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Verified there is not an already issue related to the same topic
Not for help, the issue regards a typo (probably copy paste from the developer)
Affected release: latest 2.11.0 and others
There is a typo at yaml file roles/filetree_read/tasks/teams.yml
it contains a task with a set_fact defining controller_roles but it should define controller_teams:
But it should be: controller_teams instead controller_roles
Just open the tarbal file an take a look
That just makes impossible creating teams
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Verified there is not an already issue related to the same topic
Not for help, the issue regards a typo (probably copy paste from the developer)
Affected release: latest 2.11.0 and others
Summary
Issue Type
There is a typo at yaml file
roles/filetree_read/tasks/teams.yml
it contains a task with a set_fact defining controller_roles but it should define controller_teams:
ansible.builtin.set_fact:
controller_roles: >- <----- wrong variable name it should be controller_teams
{{
__contents_filetree_controller_teams.results |
rejectattr('ansible_facts.controller_teams', 'undefined') |
map(attribute='ansible_facts.controller_teams') |
ansible.builtin.flatten
}}
no_log: "{{ controller_configuration_filetree_read_secure_logging }}"
when: __contents_filetree_controller_teams.results
...
But it should be: controller_teams instead controller_roles
ansible.builtin.set_fact:
controller_teams: >-
{{
__contents_filetree_controller_teams.results |
rejectattr('ansible_facts.controller_teams', 'undefined') |
map(attribute='ansible_facts.controller_teams') |
ansible.builtin.flatten
}}
no_log: "{{ controller_configuration_filetree_read_secure_logging }}"
when: __contents_filetree_controller_teams.results
...
STEPS TO REPRODUCE
Just open the tarbal file an take a look
That just makes impossible creating teams
The text was updated successfully, but these errors were encountered: