added base pkgs
This commit is contained in:
parent
80a23c8ee6
commit
afa797a55f
2 changed files with 10 additions and 0 deletions
|
@ -6,3 +6,4 @@
|
|||
- include_tasks: pacman.yml
|
||||
when: ansible_facts['distribution'] == "Archlinux"
|
||||
|
||||
- include_tasks: directories.yml
|
||||
|
|
9
tasks/packages.yml
Normal file
9
tasks/packages.yml
Normal file
|
@ -0,0 +1,9 @@
|
|||
- name: install core packages
|
||||
ansible.builtin.package:
|
||||
name: "{{ item }}"
|
||||
state: present
|
||||
with_items:
|
||||
- nano
|
||||
- vim
|
||||
- vi
|
||||
- net-tools
|
Loading…
Add table
Reference in a new issue