adding more tools to base and dev

This commit is contained in:
Kyle Isom 2023-05-01 16:39:45 +00:00
parent 2105e7f02d
commit 3d6b149292
2 changed files with 11 additions and 0 deletions

View File

@ -33,6 +33,7 @@
become: true become: true
ansible.builtin.apt: name={{ item }} state=present ansible.builtin.apt: name={{ item }} state=present
with_items: with_items:
- cifs-utils
- curl - curl
- htop - htop
- iftop - iftop
@ -67,3 +68,12 @@
with_items: with_items:
- emacs-nox - emacs-nox
- vim-nox - vim-nox
- name: set up mail
when: dev_full or dev_virt or dev_embedded
become: true
ansible.builtin.apt: name={{item}} state=present
with_items:
- isync
- msmtp
- mutt

View File

@ -31,6 +31,7 @@
- sbcl - sbcl
- texinfo - texinfo
- tig - tig
- tshark
- yamllint - yamllint
- zlib1g - zlib1g
- zlib1g-dev - zlib1g-dev