--- - name: Preparation ansible.builtin.shell: curl -1sLf 'https://dl.cloudsmith.io/public/isc/stork/cfg/setup/bash.deb.sh' | sudo bash - name: Update apt ansible.builtin.apt: update_cache: yes - name: Installation isc-stork-agent ansible.builtin.apt: name: isc-stork-agent state: present - name: Generation du fichier de configuration agent.env ansible.builtin.template: src: agent.env.j2 dest: /etc/stork/agent.env notify: - Restart isc-stork-agent