--- - name: Install dependencies ansible.builtin.apt: name: "{{ apt_dependencies }}" state: present update_cache: true become: true # - name: Install tools # ansible.builtin.apt: # name: "{{ apt_tools }}" # state: present # become: true # # - name: Update tldr database # ansible.builtin.command: tldr --update