---
- name: Play-book....
  hosts: all
  become: true
  tasks:
    - name: Install vim on linux
      ansible.builtin.package:
        name: vim
        state: present
        update_cache: true
