15 lines
259 B
YAML
15 lines
259 B
YAML
|
---
|
||
|
# 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
|