Feat: Add test for archlinux and debian

This commit is contained in:
2022-05-21 21:35:30 +02:00
parent ac371f5e6b
commit 467ddc50e5
7 changed files with 55 additions and 58 deletions

View File

@@ -0,0 +1,7 @@
---
- name: Archlinux - Install pkgs
community.general.pacman:
name: "{{ item }}"
state: present
with_items: "{{ pacman_pkgs }}"

View File

@@ -0,0 +1,6 @@
---
- name: Debian - Install pkgs
apt:
name: "{{ item }}"
state: present
with_items: "{{ debian_pkgs }}"

View File

@@ -1,10 +1,7 @@
---
# tasks file for core
- name: Install pkgs
community.general.pacman:
name: "{{ item }}"
state: present
with_items: "{{ pacman_pkgs }}"
- name: Install os-specific packages
include_tasks: "{{ ansible_os_family | lower }}.yml"
- name: Configure sudoers
template: