Ansible_workstation/roles/arch_pkg_install/tasks/main.yml

15 lines
259 B
YAML
Raw Normal View History

2022-01-05 10:25:33 +00:00
---
# tasks file for arch_pkg_install
- name: Install pkgs
community.general.pacman:
name: "{{ item }}"
state: present
with_items: pkgs
- name: Install AUR pkgs
kewlfft.aur.aur:
name: "{{ item }}"
state: present
with_items: aur_pkgs