mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-03-26 21:33:05 +00:00
ansible-core 2.19: Templates and expressions must use trusted sources
In ansible-core, templates and expressions must use trusted sources, such as playbooks or roles, and module results are considered untrusted sources. Signed-off-by: Rafael Guterres Jeffman <rjeffman@redhat.com>
This commit is contained in:
@@ -92,11 +92,11 @@
|
||||
|
||||
- name: Print generated random password for "{{ host1_fqdn }}"
|
||||
ansible.builtin.debug:
|
||||
var: ipahost.host["{{ host1_fqdn }}"].randompassword
|
||||
var: ipahost.host[host1_fqdn].randompassword
|
||||
|
||||
- name: Print generated random password for "{{ host2_fqdn }}"
|
||||
ansible.builtin.debug:
|
||||
var: ipahost.host["{{ host2_fqdn }}"].randompassword
|
||||
var: ipahost.host[host2_fqdn].randompassword
|
||||
|
||||
- name: Enrolled host "{{ server_fqdn }}" fails to set random password with update_password always
|
||||
ipahost:
|
||||
|
||||
Reference in New Issue
Block a user