testing #1

Merged
ejparker merged 2 commits from testing into prod 2024-12-25 03:56:26 -06:00
2 changed files with 10 additions and 0 deletions
Showing only changes of commit afa797a55f - Show all commits

View file

@ -6,3 +6,4 @@
- include_tasks: pacman.yml
when: ansible_facts['distribution'] == "Archlinux"
- include_tasks: directories.yml

9
tasks/packages.yml Normal file
View file

@ -0,0 +1,9 @@
- name: install core packages
ansible.builtin.package:
name: "{{ item }}"
state: present
with_items:
- nano
- vim
- vi
- net-tools