All public logs

Combined display of all available logs of Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 20:37, 13 March 2024 Ebasso talk contribs created page Ansible: Appending items to a List (Created page with "Simple task to append items to a list <nowiki> - name: Append items to a list hosts: localhost gather_facts: false vars: mylist: [] tasks: - name: Append list with additional mapping ansible.builtin.set_fact: mylist: "{{ mylist + [{'name': 'blabla', 'mode': 1}] }}" - name: Append list with additional mapping ansible.builtin.set_fact: mylist: "{{ mylist + [{'name': 'yoyoyo', 'mode': 2}] }}" - name: Print the updated...")