mirror of
https://github.com/ThunixdotNet/ansible.git
synced 2026-06-18 00:09:23 +00:00
16 lines
303 B
YAML
16 lines
303 B
YAML
i# Install our baseline packages for all machines, irrespective of what role they might have
|
|
---
|
|
- name: Install baseline packages
|
|
apt: name={{ item }} state=present
|
|
with_items:
|
|
- vim
|
|
- aptitude
|
|
- git
|
|
- alpine
|
|
- weechat
|
|
- mutt
|
|
- python
|
|
- rtv
|
|
- lynx
|
|
- w3m-img
|