--- - name: Demonstration of block and rescue hosts: nodes tasks: - block: - name: Service status command: systemctl status cockpit.service rescue: - name: Stopping cockpit service command: systemctl start cockpit.socket - command: systemctl enable cockpit.socket - command: systemctl status cockpit.socket ...