updated to support arch

This commit is contained in:
Radar231 2022-05-09 19:59:56 -04:00
parent 4330cd4221
commit d4f25eaf25
1 changed files with 20 additions and 0 deletions

View File

@ -37,4 +37,24 @@
state: latest
when: ansible_os_family == "Debian"
- name: Installed desired list of base packages (Arch based distros)
pacman:
name:
- curl
- elinks
- git
- htop
- multitail
- net-tools
# - pylint
- python3
- tmux
- tree
- vim
- wget
state: present
force: true
update_cache: true
when: ansible_os_family == "Archlinux"
# EOF