---
- name: Play-1....
  hosts: all
  become: true
  tasks:
    - name: Uninstall git
      ansible.builtin.apt:
        name: git
        state: absent
      when: ansible_distribution == "Ubuntu"
