--- - name: Create a file to pause Cosmos hosts: all become: yes tasks: - name: Ensure the file /etc/no-automatic-cosmos exists with specific content ansible.builtin.copy: dest: /etc/no-automatic-cosmos content: "Cosmos paused by Ansible\n" owner: root group: root mode: '0644'