- name: install workstation wm soft pacman: state: present # not required. choices: absent;latest;present. Desired state of the package. name: "{{ workstation_wm_soft }}" # not required. Name or list of names of the packages to install, upgrade, or remove. become: yes register: wm - name: install workstation base soft pacman: state: present # not required. choices: absent;latest;present. Desired state of the package. name: "{{ workstation_base_soft }}" # not required. Name or list of names of the packages to install, upgrade, or remove. become: yes register: base - name: install aur workstation soft aur: name: "{{ workstation_aur_soft }}" state: present #chech graphic card - name: debug debug: msg: "{{ wm }} {{base}}"